Skip to content
/ SOED Public

Self Organizing Error Driven Artificial Neural Network

License

Notifications You must be signed in to change notification settings

royjafari/SOED

Repository files navigation

SOED

Self Organizing Error Driven Artificial Neural Network

Publications

How to work

pip install soed
from soed import SOEDClassifier

soed = SOEDClassifier(mlp_max_iter=10000,som_x=10, som_y=10,som_input_len=X_train.shape[1])

How to run project

virtualenv soed_dev
source soed_dev/bin/activate
pip install -r requirements.txt
jupyter notebook \
    --notebook-dir="./notebooks" \
    --ip=0.0.0.0 --port=3225

At the time new py package installed

pip install <package>

pip freeze > requirements.txt

for installation in local

pip install -e .

build project

python setup.py sdist bdist_wheel

Push project

twine upload dist/*

Release pypi module

pip install twine

Ensure you have pypi credential in

# nano ~/.pypirc
[pypi]
  username = __token__
  password = <Token>
./releaseNewVersionAndAddTag.sh

About

Self Organizing Error Driven Artificial Neural Network

Resources

License

Stars

Watchers

Forks

Packages

No packages published