File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,19 @@ <h2>Get Involved</h2>
5454
5555 < h2 > Release Notes</ h2 >
5656
57+ < h3 > Aika Version 0.14 (2018-02-04)</ h3 >
58+ < ul >
59+ < li >
60+ Caching of partially computed states in the neural network during the interpretation search.
61+ </ li >
62+ < li >
63+ Refactoring of the interpretation search. The search is now iterative to prevent stack overflows. The debugging output is much more detailed now.
64+ </ li >
65+ < li >
66+ Ongoing work on the training algorithms.
67+ </ li >
68+ </ ul >
69+
5770 < h3 > Aika Version 0.13 (2018-01-20)</ h3 >
5871 < ul >
5972 < li >
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ <h3>Named Entity Recognition / Entity Resolution example</h3>
245245 < div class ="prettyprint-code ">
246246 < pre class ="prettyprint ">
247247 < code class ="language-java ">
248- System.out.println(doc.neuronActivationsToString(true ));
248+ System.out.println(doc.activationsToString( ));
249249 System.out.println();
250250
251251 System.out.println("Final interpretation: " + doc.bestInterpretation.toString());
@@ -448,11 +448,11 @@ <h3>Mutual exclusion example</h3>
448448 }
449449
450450 System.out.println("All activations:");
451- System.out.println(doc.neuronActivationsToString(true ));
451+ System.out.println(doc.activationsToString( ));
452452 System.out.println();
453453
454454 System.out.println("Selected activations:");
455- System.out.println(doc.neuronActivationsToString(true, false, true));
455+ System.out.println(doc.activationsToString( false, true));
456456
457457 doc.clearActivations();
458458 }
@@ -601,7 +601,7 @@ <h3>Pattern matching example</h3>
601601 }
602602
603603 System.out.println("All activations:");
604- System.out.println(doc.neuronActivationsToString(true, false, true));
604+ System.out.println(doc.activationsToString( false, true));
605605 System.out.println();
606606
607607 doc.clearActivations();
You can’t perform that action at this time.
0 commit comments