Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.42 KB

README.md

File metadata and controls

30 lines (24 loc) · 1.42 KB

Films Synopsis Generator

Summary

The goal of this project is to build a model that is able to generate different film synopsys from a set of predefined genres. The model is LSTM one to many

For training the net we will be using a dataset of >100K pairs of <genres,synopsis> (data is in spanish).

Project folder structure

Lets put the code in the src folder and all the input and output data in the data folder (without pushing any data to the repo).

.
├── data
│   ├── others
│   │   └── predictions
│   ├── tensorboard_logs
│   └── weights
├── notebooks
├── src
│   
└── tensorboard_logs

Useful links and references