work in progress

This commit is contained in:
LEMLIJN Clément
2026-05-12 11:44:58 +02:00
parent 2f37d72efd
commit 657f6c2894
7 changed files with 368 additions and 31 deletions

35
README.md Normal file
View File

@@ -0,0 +1,35 @@
```json
{
"model": {
"new": true,
"parameters": [10, 5, 1], // [input neurons, hidden neurons, output neuron]
"path": "C:/HEPL/RNA2/ANN-framework/src/main/resources/snapshots/snapshot-test.json"
},
"training" : {
"learning_rate" : 0.002,
"max_epoch" : 5000
},
"dataset" : {
"path" : "C:/HEPL/RNA2/ANN-framework/src/main/resources/assets/and.csv"
}
}
```
2
```
{
"model": {
"new": true,
"parameters": [1],
"path": "C:/HEPL/RNA2/ANN-framework/src/main/resources/snapshots/snapshot-test.json"
},
"training" : {
"learning_rate" : 0.002,
"max_epoch" : 5000
},
"dataset" : {
"path" : "C:/HEPL/RNA2/ANN-framework/src/main/resources/assets/and.csv"
}
}
```