Skip to content

hipoglucido/films-synopsis-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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