├── .gitignore ├── .images ├── epoch_000-layer_dense_1-weights_02.gif └── epoch_000-lstm_1-weights_02.gif ├── LICENSE ├── README.md ├── __init__.py ├── bin ├── create_image_sequence.sh └── get_scale.py ├── data └── .gitkeep ├── example └── wisdm.py ├── requirements.txt └── src ├── __init__.py └── image_saver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/epoch_000-layer_dense_1-weights_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/.images/epoch_000-layer_dense_1-weights_02.gif -------------------------------------------------------------------------------- /.images/epoch_000-lstm_1-weights_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/.images/epoch_000-lstm_1-weights_02.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/__init__.py -------------------------------------------------------------------------------- /bin/create_image_sequence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/bin/create_image_sequence.sh -------------------------------------------------------------------------------- /bin/get_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/bin/get_scale.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/wisdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/example/wisdm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/image_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/keras_weight_animator/HEAD/src/image_saver.py --------------------------------------------------------------------------------