-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange.txt
69 lines (53 loc) · 1.16 KB
/
change.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
24/04/2018
====== Version 0.3 =======
*********************************
Performance Improvements
time execution reduced by 75%
Internal Architecture Vectorized
EJML Updated 0.30 -> 0.34
*********************************
Neural Network
- removed outputAll
Feedforward
* outputLayers -> activations
+ activationsDropout
+ fixed getParameters
Layers
+ outputDropout
Initializations
+ HeInit
LossFunctions
+ Improvement CrossEntropy
+ Added Logistic Loss Function
+ MSE vectorized
+ RMSE vectorized
Backpropagation
+ removed gradient
+ removed minibatch
+ fixed L2 regularization
+ Performance incresed
Training Algorithms
+ Conjugate Gradient Added
+ Scaled Conjugate Gradient Added
+ Scaled Conjugate Gradient with minibatch added
- Clean SGD
+ SGD Numeric Added
- TrainingALgorithm Reorganized
Beta Rules Added for Conjugate Gradient
+Fletcher Reeves
+PolakRebiere
Gradients
+ DropoutGradient
+ NoiseGradient
+ NumericGradient
+ StandardGradient
+ Gradient
+ GradientFactory
Update Rules
+ Momentum
+ SGC
+ Update
+ UpdateRule
TransferFunctions
update EJML 0.30 -> 0.34
Test Added