Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeremyfix/deep_examples
Example scripts for deep learning
https://github.com/jeremyfix/deep_examples
Last synced: 5 days ago
JSON representation
Example scripts for deep learning
- Host: GitHub
- URL: https://github.com/jeremyfix/deep_examples
- Owner: jeremyfix
- License: gpl-2.0
- Created: 2016-01-15T10:09:13.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T18:56:18.000Z (11 months ago)
- Last Synced: 2023-12-09T17:38:21.687Z (11 months ago)
- Language: Python
- Size: 4.85 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deep_examples
Example scripts for deep learningLasagne:
We modify the LSTM layer of Lasagne in order to export the cell activities. The original implementation only exports the hidden activities. We also modify the example from the recipes in order to perform online generation when using the trained network for generating texts. In the original implementation of the lstm_text_generation.py script, the cell and hidden states are reset to 0 and text generation works by feeding a sequence (with the seed or generated characters) over a sliding window. The modification starts with an initial setting of the cell and hidden units but then proceeds online by being fed by the seed characters and then the generated characters.