ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
RepositoryDetailsURL
2
WSO2 Carbon ML
3
01)Added a new API called api/model/neural-network to connect backend and the front end to run
https://github.com/Lakini/carbon-ml/blob/visualDeepNeuralNetworkBuilder/components/ml/org.wso2.carbon.ml.rest.api/src/main/java/org/wso2/carbon/ml/rest/api/ModelApiV20.java#L623-L709
4
Neural Networks.
5
02)Implemented a class which contains Neural Network algorithm for Feedforward Networks
https://github.com/Lakini/carbon-ml/blob/visualDeepNeuralNetworkBuilder/components/ml/org.wso2.carbon.ml.rest.api/src/main/java/org/wso2/carbon/ml/rest/api/neuralNetworks/FeedForwardNetwork.java
6
03)Implement a class to handle Output Layer details of a Neural Network
https://github.com/Lakini/carbon-ml/blob/visualDeepNeuralNetworkBuilder/components/ml/org.wso2.carbon.ml.rest.api/src/main/java/org/wso2/carbon/ml/rest/api/neuralNetworks/OutputLayerDetails.java
7
04)Implement a class to handle Hidden Layer details of a Neural Network
https://github.com/Lakini/carbon-ml/blob/visualDeepNeuralNetworkBuilder/components/ml/org.wso2.carbon.ml.rest.api/src/main/java/org/wso2/carbon/ml/rest/api/neuralNetworks/HiddenLayerDetails.java
8
05)Implemented a UI for users to drag and drop layers and build Feedforward NN
https://github.com/Lakini/carbon-ml/blob/visualDeepNeuralNetworkBuilder/apps/ml/site/neuralnetworks/neuralnetwork.jag
9
06)Implemented a seperate javascript file to handle functions of above neuralnetwork.jag file
https://github.com/Lakini/carbon-ml/blob/visualDeepNeuralNetworkBuilder/apps/ml/js/neuralNetworkScript.js
10
07)Implemented a seperate CSS file to handle the functions of the neuralnetwork.jag page
https://github.com/Lakini/carbon-ml/blob/visualDeepNeuralNetworkBuilder/apps/ml/css/neuralNetworkStyles.css
11
12
13
Forked Repository URLhttps://github.com/Lakini/carbon-ml/tree/visualDeepNeuralNetworkBuilder
14
Commit IDCommit Message
15
This is my commited list:3a23d9ab7a4e51a95207398e8fdeacd0198a1642
Added Enums for Optimiation algorithms,Loss functions,Updater algorithms and WeighInit Algorithms
16
60f3de25ba419dc20e044130ba2dc7e324b06570
handled catch exceptions,exception handling, definr versions under the tags
17
275de09f616359250d4252a996d9ef255bc68defChnaged the Licence and changed the code.
18
e79028c71688fb85982e376a0f74c5bdc09449d8Implemented the Visual Deep Neyral Network builder and the initial commit.
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100