Jensen-holm commited on
Commit
e53a40c
1 Parent(s): 7855334

python package not really working, but it is all set up okay I think

Browse files
Files changed (3) hide show
  1. README.md +2 -2
  2. nn/__init__.py +3 -3
  3. setup.py +1 -1
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).
17
 
18
  ## Install
19
 
20
- `pip install numpy_neuron`
21
 
22
 
23
  ## Example
 
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/numpy-neuron/)
17
 
18
  ## Install
19
 
20
+ `pip install numpy-neuron`
21
 
22
 
23
  ## Example
nn/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
- from nn.loss import *
2
- from nn.activation import *
3
- from nn.nn import *
 
1
+ from .loss import *
2
+ from .activation import *
3
+ from .nn import *
setup.py CHANGED
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
 
3
  setup(
4
  name="numpy_neuron",
5
- version="0.3",
6
  author="Jensen Holm",
7
  author_email="jensen.dev.01@gmail.com",
8
  description="Simple, lightweight neural network framework built in numpy",
 
2
 
3
  setup(
4
  name="numpy_neuron",
5
+ version="1.1",
6
  author="Jensen Holm",
7
  author_email="jensen.dev.01@gmail.com",
8
  description="Simple, lightweight neural network framework built in numpy",