├── README.md ├── cpu.theanorc ├── gpu.theanorc ├── serialize.py ├── speak_movies.py └── train.py /README.md: -------------------------------------------------------------------------------- 1 | # MovieBot 2 | Generates new movie ideas. 3 | https://youtu.be/Bz8WG1qEI2Y 4 | -------------------------------------------------------------------------------- /cpu.theanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/MovieBot/HEAD/cpu.theanorc -------------------------------------------------------------------------------- /gpu.theanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/MovieBot/HEAD/gpu.theanorc -------------------------------------------------------------------------------- /serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/MovieBot/HEAD/serialize.py -------------------------------------------------------------------------------- /speak_movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/MovieBot/HEAD/speak_movies.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/MovieBot/HEAD/train.py --------------------------------------------------------------------------------