├── .gitignore ├── LICENSE ├── README.md ├── checkpoint └── .gitignore ├── os_elm.py ├── train_iris.py └── train_mnist.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/TensorFlow-OS-ELM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/TensorFlow-OS-ELM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/TensorFlow-OS-ELM/HEAD/README.md -------------------------------------------------------------------------------- /checkpoint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/TensorFlow-OS-ELM/HEAD/checkpoint/.gitignore -------------------------------------------------------------------------------- /os_elm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/TensorFlow-OS-ELM/HEAD/os_elm.py -------------------------------------------------------------------------------- /train_iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/TensorFlow-OS-ELM/HEAD/train_iris.py -------------------------------------------------------------------------------- /train_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otenim/TensorFlow-OS-ELM/HEAD/train_mnist.py --------------------------------------------------------------------------------