├── .gitignore ├── EmotionFlow.pdf ├── README.md ├── config.py ├── crf.py ├── friends_transcript.json ├── model.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/.gitignore -------------------------------------------------------------------------------- /EmotionFlow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/EmotionFlow.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/config.py -------------------------------------------------------------------------------- /crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/crf.py -------------------------------------------------------------------------------- /friends_transcript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/friends_transcript.json -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpcsong/emotionflow/HEAD/train.py --------------------------------------------------------------------------------