gitextract_7ps85ir2/ ├── .gitignore ├── DBN.py ├── DeepLearningTutorials/ │ ├── .gitignore │ ├── .hgignore │ ├── .travis.yml │ ├── README.rst │ ├── __init__.py │ ├── code/ │ │ ├── DBN.py │ │ ├── SdA.py │ │ ├── __init__.py │ │ ├── cA.py │ │ ├── convolutional_mlp.py │ │ ├── dA.py │ │ ├── hmc/ │ │ │ ├── __init__.py │ │ │ ├── hmc.py │ │ │ └── test_hmc.py │ │ ├── imdb.py │ │ ├── imdb_preprocess.py │ │ ├── logistic_cg.py │ │ ├── logistic_sgd.py │ │ ├── lstm.py │ │ ├── mlp.py │ │ ├── rbm.py │ │ ├── rnnrbm.py │ │ ├── rnnslu.py │ │ ├── test.py │ │ └── utils.py │ ├── data/ │ │ ├── download.sh │ │ └── training_colorpatches_16x16_demo.mat │ ├── doc/ │ │ ├── .templates/ │ │ │ └── layout.html │ │ ├── DBN.txt │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── SdA.txt │ │ ├── conf.py │ │ ├── contents.txt │ │ ├── dA.txt │ │ ├── deep.txt │ │ ├── gettingstarted.txt │ │ ├── hmc.txt │ │ ├── index.txt │ │ ├── lenet.txt │ │ ├── logreg.txt │ │ ├── lstm.txt │ │ ├── mlp.txt │ │ ├── rbm.txt │ │ ├── references.txt │ │ ├── rnnrbm.txt │ │ ├── rnnslu.txt │ │ ├── scripts/ │ │ │ └── docgen.py │ │ └── utilities.txt │ ├── issues_closed/ │ │ └── 2_RBM_cost_fn.txt │ ├── issues_open/ │ │ ├── 1_SdA_performance.txt │ │ ├── 3_RBM_scan_GPU.txt │ │ ├── 4_RBM_scan.txt │ │ ├── 5_results.txt │ │ └── 6_benchmarking_pybrain.txt │ └── misc/ │ └── do_nightly_build ├── README.md ├── joplin/ │ ├── alabama.xml │ ├── cleopha.xml │ ├── entertainer.xml │ ├── maple_leaf.xml │ ├── searchlight.xml │ ├── strenous.xml │ ├── syncopations.xml │ ├── winners.xml │ └── winners_2.xml ├── joplin-model.pickle ├── joplin_data.pickle ├── midi/ │ ├── DataTypeConverters.py │ ├── EventDispatcher.py │ ├── Icon_ │ ├── MidiFileParser.py │ ├── MidiInFile.py │ ├── MidiInStream.py │ ├── MidiOutFile.py │ ├── MidiOutStream.py │ ├── MidiToText.py │ ├── RawInstreamFile.py │ ├── RawOutstreamFile.py │ ├── __init__.py │ ├── changes.txt │ ├── constants.py │ ├── example_mimimal_type0.py │ ├── example_print_channel_0.py │ ├── example_print_events.py │ ├── example_print_file.py │ ├── example_transpose_octave.py │ ├── files.txt │ ├── hallelujah.mid │ ├── license.txt │ ├── readme │ ├── readme.txt │ ├── utils.py │ └── version.txt ├── myparser.py └── neural-plugin/ ├── DoubleTime.js ├── neural-plugin.js ├── neural-plugin.ui └── output-window.ui