neuronet 6.1.0 → 8.0.251113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CREDITS.md +10 -0
- data/README.md +94 -782
- data/lib/neuronet/arrayable.rb +13 -0
- data/lib/neuronet/backpropagate.rb +25 -0
- data/lib/neuronet/config.rb +10 -0
- data/lib/neuronet/connection.rb +9 -0
- data/lib/neuronet/deep.rb +52 -0
- data/lib/neuronet/exportable.rb +67 -0
- data/lib/neuronet/feed_forward.rb +54 -0
- data/lib/neuronet/input_layer.rb +19 -0
- data/lib/neuronet/input_neuron.rb +27 -0
- data/lib/neuronet/layer.rb +41 -0
- data/lib/neuronet/layer_presets.rb +53 -0
- data/lib/neuronet/middle_layer.rb +23 -0
- data/lib/neuronet/middle_neuron.rb +31 -0
- data/lib/neuronet/mlp.rb +46 -0
- data/lib/neuronet/network_stats.rb +28 -0
- data/lib/neuronet/neuron.rb +45 -0
- data/lib/neuronet/neuron_stats.rb +45 -0
- data/lib/neuronet/noisy_backpropagate.rb +22 -0
- data/lib/neuronet/noisy_middle_neuron.rb +8 -0
- data/lib/neuronet/noisy_neuron.rb +8 -0
- data/lib/neuronet/noisy_output_neuron.rb +8 -0
- data/lib/neuronet/output_layer.rb +25 -0
- data/lib/neuronet/output_neuron.rb +27 -0
- data/lib/neuronet/perceptron.rb +35 -0
- data/lib/neuronet/squash.rb +12 -0
- data/lib/neuronet/trainable.rb +29 -0
- data/lib/neuronet.rb +31 -619
- metadata +45 -20
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 34f23ce75292128094b31f4eac5245ac41a7b3cf42026aa4bbb2ce74e19fd255
|
|
4
|
+
data.tar.gz: ec4105888e4bc67361a9f4d1bde5edbfe94f7363bbe1233e39fc29fc3c2e6de7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 5222bf678484647b6911c489d304206ed3730438b7810a0a19e08a633a2e422e0afb2ff7cbb84272ffc7080136d361dd1d1ee9cdd3424b21aea6b274bd6f306c
|
|
7
|
+
data.tar.gz: 4082141fd54fedf66e3449334b5546abe0b78ee6306eee2e3acd15864ff93b446af8f0a0ed520d27e98c991f7bd3a62222b00b652d0289616ea5ea2c167eb5c7
|
data/CREDITS.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Credits
|
|
2
|
+
|
|
3
|
+
We want to credit where credit is due.
|
|
4
|
+
This project owes thanks to the authors of this repository (see their commits),
|
|
5
|
+
the third-party libraries we rely on (check the dependencies),
|
|
6
|
+
and the diffuse pool of ideas and inspirations that shaped it.
|
|
7
|
+
|
|
8
|
+
We welcome contributions to this list!
|
|
9
|
+
If you feel someone or something is missing,
|
|
10
|
+
please submit a pull request with the suggested addition.
|