├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── doc ├── json_tsv.ipynb └── load_json.ipynb ├── json ├── friends_season_01.json ├── friends_season_02.json ├── friends_season_03.json ├── friends_season_04.json ├── friends_season_05.json ├── friends_season_06.json ├── friends_season_07.json ├── friends_season_08.json ├── friends_season_09.json └── friends_season_10.json ├── scripts ├── cm_lib.py ├── fix_entities.py ├── generate_rc.py └── stats.py └── tsv ├── README.md └── friends_transcripts.tsv /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/README.md -------------------------------------------------------------------------------- /doc/json_tsv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/doc/json_tsv.ipynb -------------------------------------------------------------------------------- /doc/load_json.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/doc/load_json.ipynb -------------------------------------------------------------------------------- /json/friends_season_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_01.json -------------------------------------------------------------------------------- /json/friends_season_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_02.json -------------------------------------------------------------------------------- /json/friends_season_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_03.json -------------------------------------------------------------------------------- /json/friends_season_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_04.json -------------------------------------------------------------------------------- /json/friends_season_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_05.json -------------------------------------------------------------------------------- /json/friends_season_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_06.json -------------------------------------------------------------------------------- /json/friends_season_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_07.json -------------------------------------------------------------------------------- /json/friends_season_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_08.json -------------------------------------------------------------------------------- /json/friends_season_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_09.json -------------------------------------------------------------------------------- /json/friends_season_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/json/friends_season_10.json -------------------------------------------------------------------------------- /scripts/cm_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/scripts/cm_lib.py -------------------------------------------------------------------------------- /scripts/fix_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/scripts/fix_entities.py -------------------------------------------------------------------------------- /scripts/generate_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/scripts/generate_rc.py -------------------------------------------------------------------------------- /scripts/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/scripts/stats.py -------------------------------------------------------------------------------- /tsv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/tsv/README.md -------------------------------------------------------------------------------- /tsv/friends_transcripts.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emorynlp/character-mining/HEAD/tsv/friends_transcripts.tsv --------------------------------------------------------------------------------