Spaces:
Build error
Build error
Commit
·
a094ad4
1
Parent(s):
4dc8296
pypi package works!
Browse files- README.md +3 -3
- about_package.md +2 -2
README.md
CHANGED
|
@@ -13,11 +13,11 @@ license: mit
|
|
| 13 |
|
| 14 |
# Numpy-Neuron
|
| 15 |
|
| 16 |
-
A small, simple neural network framework built using only [numpy](https://numpy.org) and python (duh). Check it out on [PyPI](https://pypi.org/project/
|
| 17 |
|
| 18 |
## Install
|
| 19 |
|
| 20 |
-
`pip install
|
| 21 |
|
| 22 |
|
| 23 |
## Example
|
|
@@ -28,7 +28,7 @@ from sklearn.preprocessing import OneHotEncoder
|
|
| 28 |
from sklearn.model_selection import train_test_split
|
| 29 |
from sklearn.metrics import accuracy_score, precision_score, recall_score
|
| 30 |
import numpy as np
|
| 31 |
-
from
|
| 32 |
NN,
|
| 33 |
Relu,
|
| 34 |
Sigmoid,
|
|
|
|
| 13 |
|
| 14 |
# Numpy-Neuron
|
| 15 |
|
| 16 |
+
A small, simple neural network framework built using only [numpy](https://numpy.org) and python (duh). Check it out on [PyPI](https://pypi.org/project/numpyneuron/)
|
| 17 |
|
| 18 |
## Install
|
| 19 |
|
| 20 |
+
`pip install numpyneuron`
|
| 21 |
|
| 22 |
|
| 23 |
## Example
|
|
|
|
| 28 |
from sklearn.model_selection import train_test_split
|
| 29 |
from sklearn.metrics import accuracy_score, precision_score, recall_score
|
| 30 |
import numpy as np
|
| 31 |
+
from numpyneuron import (
|
| 32 |
NN,
|
| 33 |
Relu,
|
| 34 |
Sigmoid,
|
about_package.md
CHANGED
|
@@ -4,7 +4,7 @@ A small, simple neural network framework built using only [numpy](https://numpy.
|
|
| 4 |
|
| 5 |
## Install
|
| 6 |
|
| 7 |
-
`pip install
|
| 8 |
|
| 9 |
|
| 10 |
## Example
|
|
@@ -15,7 +15,7 @@ from sklearn.preprocessing import OneHotEncoder
|
|
| 15 |
from sklearn.model_selection import train_test_split
|
| 16 |
from sklearn.metrics import accuracy_score, precision_score, recall_score
|
| 17 |
import numpy as np
|
| 18 |
-
from
|
| 19 |
NN,
|
| 20 |
Relu,
|
| 21 |
Sigmoid,
|
|
|
|
| 4 |
|
| 5 |
## Install
|
| 6 |
|
| 7 |
+
`pip install numpyneuron`
|
| 8 |
|
| 9 |
|
| 10 |
## Example
|
|
|
|
| 15 |
from sklearn.model_selection import train_test_split
|
| 16 |
from sklearn.metrics import accuracy_score, precision_score, recall_score
|
| 17 |
import numpy as np
|
| 18 |
+
from numpyneuron import (
|
| 19 |
NN,
|
| 20 |
Relu,
|
| 21 |
Sigmoid,
|