├── LICENSE ├── README.md ├── data_crawl └── data_crawling.py ├── data_processing └── data_processing.py ├── imgs ├── .DS_Store ├── lstm_structure.png ├── lstm_train_analysis.png ├── seq2seq_structure.png ├── seq2seq_train_analysis.png └── ~$lstm_train_analysis.pptx ├── lstm_model ├── generate_lyrics_word_based.py └── train_lstm_word_based.py ├── seq2seq_model ├── .DS_Store ├── generation_word_based.py └── train_seq2seq_word_based.py └── train_data └── all_5.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/README.md -------------------------------------------------------------------------------- /data_crawl/data_crawling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/data_crawl/data_crawling.py -------------------------------------------------------------------------------- /data_processing/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/data_processing/data_processing.py -------------------------------------------------------------------------------- /imgs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/imgs/.DS_Store -------------------------------------------------------------------------------- /imgs/lstm_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/imgs/lstm_structure.png -------------------------------------------------------------------------------- /imgs/lstm_train_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/imgs/lstm_train_analysis.png -------------------------------------------------------------------------------- /imgs/seq2seq_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/imgs/seq2seq_structure.png -------------------------------------------------------------------------------- /imgs/seq2seq_train_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/imgs/seq2seq_train_analysis.png -------------------------------------------------------------------------------- /imgs/~$lstm_train_analysis.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/imgs/~$lstm_train_analysis.pptx -------------------------------------------------------------------------------- /lstm_model/generate_lyrics_word_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/lstm_model/generate_lyrics_word_based.py -------------------------------------------------------------------------------- /lstm_model/train_lstm_word_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/lstm_model/train_lstm_word_based.py -------------------------------------------------------------------------------- /seq2seq_model/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/seq2seq_model/.DS_Store -------------------------------------------------------------------------------- /seq2seq_model/generation_word_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/seq2seq_model/generation_word_based.py -------------------------------------------------------------------------------- /seq2seq_model/train_seq2seq_word_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/seq2seq_model/train_seq2seq_word_based.py -------------------------------------------------------------------------------- /train_data/all_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nana0606/lyrics_generation/HEAD/train_data/all_5.txt --------------------------------------------------------------------------------