Update README.md
This commit is contained in:
parent
f958e2d4e5
commit
8fe7b90e26
1 changed files with 30 additions and 8 deletions
22
README.md
22
README.md
|
@ -29,6 +29,28 @@ The SbS.py autodetectes if the required C++ .so modules are in the same director
|
||||||
|
|
||||||
# Parameters in JSON file
|
# Parameters in JSON file
|
||||||
|
|
||||||
|
data_mode: str = field(default="")
|
||||||
|
data_path: str = field(default="./")
|
||||||
|
|
||||||
|
batch_size: int = field(default=500)
|
||||||
|
|
||||||
|
learning_step: int = field(default=0)
|
||||||
|
learning_step_max: int = field(default=10000)
|
||||||
|
|
||||||
|
number_of_cpu_processes: int = field(default=-1)
|
||||||
|
|
||||||
|
number_of_spikes: int = field(default=0)
|
||||||
|
cooldown_after_number_of_spikes: int = field(default=0)
|
||||||
|
|
||||||
|
weight_path: str = field(default="./Weights/")
|
||||||
|
eps_xy_path: str = field(default="./EpsXY/")
|
||||||
|
|
||||||
|
reduction_cooldown: float = field(default=25.0)
|
||||||
|
epsilon_0: float = field(default=1.0)
|
||||||
|
|
||||||
|
update_after_x_batch: float = field(default=1.0)
|
||||||
|
|
||||||
|
|
||||||
## network_structure (required!)
|
## network_structure (required!)
|
||||||
Parameters of the network. The details about its layers and the number of output neurons.
|
Parameters of the network. The details about its layers and the number of output neurons.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue