├── .gitignore ├── LICENSE ├── README.md ├── elm.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.h5 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/Numpy-ELM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/Numpy-ELM/HEAD/README.md -------------------------------------------------------------------------------- /elm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/Numpy-ELM/HEAD/elm.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/Numpy-ELM/HEAD/train.py --------------------------------------------------------------------------------