File tree 2 files changed +17
-4
lines changed
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>
54
54
55
55
< h2 > Release Notes</ h2 >
56
56
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
+
57
70
< h3 > Aika Version 0.13 (2018-01-20)</ h3 >
58
71
< ul >
59
72
< li >
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ <h3>Named Entity Recognition / Entity Resolution example</h3>
245
245
< div class ="prettyprint-code ">
246
246
< pre class ="prettyprint ">
247
247
< code class ="language-java ">
248
- System.out.println(doc.neuronActivationsToString(true ));
248
+ System.out.println(doc.activationsToString( ));
249
249
System.out.println();
250
250
251
251
System.out.println("Final interpretation: " + doc.bestInterpretation.toString());
@@ -448,11 +448,11 @@ <h3>Mutual exclusion example</h3>
448
448
}
449
449
450
450
System.out.println("All activations:");
451
- System.out.println(doc.neuronActivationsToString(true ));
451
+ System.out.println(doc.activationsToString( ));
452
452
System.out.println();
453
453
454
454
System.out.println("Selected activations:");
455
- System.out.println(doc.neuronActivationsToString(true, false, true));
455
+ System.out.println(doc.activationsToString( false, true));
456
456
457
457
doc.clearActivations();
458
458
}
@@ -601,7 +601,7 @@ <h3>Pattern matching example</h3>
601
601
}
602
602
603
603
System.out.println("All activations:");
604
- System.out.println(doc.neuronActivationsToString(true, false, true));
604
+ System.out.println(doc.activationsToString( false, true));
605
605
System.out.println();
606
606
607
607
doc.clearActivations();
You can’t perform that action at this time.
0 commit comments