├── README.md ├── __init__.py ├── cnn.py ├── datasets.py ├── download_names_data.py ├── generate_cnn_experiments.py ├── generate_crossentropy_cnn_experiments.py ├── generate_lstm_experiments.py ├── generate_rnn_experiments.py ├── layers.py ├── lstm.py ├── lstm_numerical_checks.py ├── numerical_results.py ├── plotting.py ├── rnn.py ├── rnn_names.py ├── run_experiments.sh ├── setup_single_experiment.sh └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | #something in here 2 | -------------------------------------------------------------------------------- /cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/cnn.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/datasets.py -------------------------------------------------------------------------------- /download_names_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/download_names_data.py -------------------------------------------------------------------------------- /generate_cnn_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/generate_cnn_experiments.py -------------------------------------------------------------------------------- /generate_crossentropy_cnn_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/generate_crossentropy_cnn_experiments.py -------------------------------------------------------------------------------- /generate_lstm_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/generate_lstm_experiments.py -------------------------------------------------------------------------------- /generate_rnn_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/generate_rnn_experiments.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/layers.py -------------------------------------------------------------------------------- /lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/lstm.py -------------------------------------------------------------------------------- /lstm_numerical_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/lstm_numerical_checks.py -------------------------------------------------------------------------------- /numerical_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/numerical_results.py -------------------------------------------------------------------------------- /plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/plotting.py -------------------------------------------------------------------------------- /rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/rnn.py -------------------------------------------------------------------------------- /rnn_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/rnn_names.py -------------------------------------------------------------------------------- /run_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/run_experiments.sh -------------------------------------------------------------------------------- /setup_single_experiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/setup_single_experiment.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerenMillidge/PredictiveCodingBackprop/HEAD/utils.py --------------------------------------------------------------------------------