├── .gitignore ├── README.md ├── dataset ├── Twitter │ └── README.md └── Weibo │ └── README.md ├── model ├── DatasetLoader.py ├── FactBasedModels.py ├── HetDGCN.py ├── PatternBasedModels.py ├── PrefFEND.py ├── ckpts │ ├── BERT_Emo │ │ └── args.txt │ ├── BERT_Emo_with_Pref-FENDs │ │ └── args.txt │ ├── BiLSTM+DeClarE │ │ └── args.txt │ ├── BiLSTM+DeClarE_with_Pref-FEND │ │ └── args.txt │ ├── BiLSTM │ │ └── args.txt │ ├── BiLSTM_with_Pref-FENDs │ │ └── args.txt │ ├── DeClarE │ │ └── args.txt │ ├── DeClarE_with_Pref-FENDs │ │ └── args.txt │ ├── EANN_Text │ │ └── args.txt │ ├── EANN_Text_with_Pref-FENDs │ │ └── args.txt │ ├── EVIN │ │ └── args.txt │ └── MAC │ │ └── args.txt ├── config.py ├── evaluation.py ├── main.py ├── run_twitter.sh ├── run_weibo.sh └── utils.py └── preprocess ├── BERT_Emo ├── code │ ├── emotion │ │ ├── extract_emotion_ch.py │ │ └── extract_emotion_en.py │ └── preprocess │ │ ├── input_of_emotions.py │ │ └── run.sh └── resources │ ├── Chinese │ ├── BosonNLP │ │ ├── BosonNLP_sentiment_score.txt │ │ ├── license.txt │ │ └── readme.txt │ ├── HowNet │ │ ├── intensifierWords.txt │ │ ├── 正面情感词语(中文).txt │ │ ├── 正面评价词语(中文).txt │ │ ├── 程度级别词语(中文).txt │ │ ├── 负面情感词语(中文).txt │ │ └── 负面评价词语(中文).txt │ ├── others │ │ ├── emoticon │ │ │ └── emoticon.csv │ │ ├── negative │ │ │ └── negationWords.txt │ │ └── pronoun │ │ │ ├── 1-personal-pronoun.txt │ │ │ ├── 2-personal-pronoun.txt │ │ │ └── 3-personal-pronoun.txt │ └── 大连理工大学情感词汇本体库 │ │ ├── preprocess │ │ ├── emotion_words_31264.csv │ │ └── preprocess.ipynb │ │ ├── 情感词汇本体.xlsx │ │ └── 情感词汇本体库说明文档.doc │ └── English │ ├── HowNet │ ├── intensifierWords.txt │ ├── 正面情感词语(英文).txt │ ├── 正面评价词语(英文).txt │ ├── 程度级别词语(英文).txt │ ├── 负面情感词语(英文).txt │ └── 负面评价词语(英文).txt │ ├── NRC │ ├── NRC-Emotion-Intensity-Lexicon-v1.txt │ ├── NRC-Emotion-Lexicon-Wordlevel-v0.92.txt │ ├── preprocess │ │ └── preprocess.ipynb │ ├── readme-intensity.txt │ └── readme-lexicon.txt │ └── others │ ├── negative │ └── negationWords.txt │ └── pronoun │ ├── 1-personal-pronoun.txt │ ├── 2-personal-pronoun.txt │ └── 3-personal-pronoun.txt ├── EANN_Text ├── events_clustering.py └── run.sh ├── bm25 ├── retrieve.py └── run.sh ├── graph_init ├── init_graph.py └── run.sh ├── tokenize ├── get_articles_tokens.py ├── get_post_tokens.py └── run.sh └── tokens_recognition ├── Twitter.ipynb ├── Weibo.ipynb └── resources ├── pattern_words_Chinese.txt └── pattern_words_English.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/README.md -------------------------------------------------------------------------------- /dataset/Twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/dataset/Twitter/README.md -------------------------------------------------------------------------------- /dataset/Weibo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/dataset/Weibo/README.md -------------------------------------------------------------------------------- /model/DatasetLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/DatasetLoader.py -------------------------------------------------------------------------------- /model/FactBasedModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/FactBasedModels.py -------------------------------------------------------------------------------- /model/HetDGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/HetDGCN.py -------------------------------------------------------------------------------- /model/PatternBasedModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/PatternBasedModels.py -------------------------------------------------------------------------------- /model/PrefFEND.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/PrefFEND.py -------------------------------------------------------------------------------- /model/ckpts/BERT_Emo/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/BERT_Emo/args.txt -------------------------------------------------------------------------------- /model/ckpts/BERT_Emo_with_Pref-FENDs/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/BERT_Emo_with_Pref-FENDs/args.txt -------------------------------------------------------------------------------- /model/ckpts/BiLSTM+DeClarE/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/BiLSTM+DeClarE/args.txt -------------------------------------------------------------------------------- /model/ckpts/BiLSTM+DeClarE_with_Pref-FEND/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/BiLSTM+DeClarE_with_Pref-FEND/args.txt -------------------------------------------------------------------------------- /model/ckpts/BiLSTM/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/BiLSTM/args.txt -------------------------------------------------------------------------------- /model/ckpts/BiLSTM_with_Pref-FENDs/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/BiLSTM_with_Pref-FENDs/args.txt -------------------------------------------------------------------------------- /model/ckpts/DeClarE/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/DeClarE/args.txt -------------------------------------------------------------------------------- /model/ckpts/DeClarE_with_Pref-FENDs/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/DeClarE_with_Pref-FENDs/args.txt -------------------------------------------------------------------------------- /model/ckpts/EANN_Text/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/EANN_Text/args.txt -------------------------------------------------------------------------------- /model/ckpts/EANN_Text_with_Pref-FENDs/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/EANN_Text_with_Pref-FENDs/args.txt -------------------------------------------------------------------------------- /model/ckpts/EVIN/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/EVIN/args.txt -------------------------------------------------------------------------------- /model/ckpts/MAC/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/ckpts/MAC/args.txt -------------------------------------------------------------------------------- /model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/config.py -------------------------------------------------------------------------------- /model/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/evaluation.py -------------------------------------------------------------------------------- /model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/main.py -------------------------------------------------------------------------------- /model/run_twitter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/run_twitter.sh -------------------------------------------------------------------------------- /model/run_weibo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/run_weibo.sh -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/model/utils.py -------------------------------------------------------------------------------- /preprocess/BERT_Emo/code/emotion/extract_emotion_ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/code/emotion/extract_emotion_ch.py -------------------------------------------------------------------------------- /preprocess/BERT_Emo/code/emotion/extract_emotion_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/code/emotion/extract_emotion_en.py -------------------------------------------------------------------------------- /preprocess/BERT_Emo/code/preprocess/input_of_emotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/code/preprocess/input_of_emotions.py -------------------------------------------------------------------------------- /preprocess/BERT_Emo/code/preprocess/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/code/preprocess/run.sh -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/BosonNLP/BosonNLP_sentiment_score.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/BosonNLP/BosonNLP_sentiment_score.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/BosonNLP/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/BosonNLP/license.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/BosonNLP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/BosonNLP/readme.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/HowNet/intensifierWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/HowNet/intensifierWords.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/HowNet/正面情感词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/HowNet/正面情感词语(中文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/HowNet/正面评价词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/HowNet/正面评价词语(中文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/HowNet/程度级别词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/HowNet/程度级别词语(中文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/HowNet/负面情感词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/HowNet/负面情感词语(中文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/HowNet/负面评价词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/HowNet/负面评价词语(中文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/others/emoticon/emoticon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/others/emoticon/emoticon.csv -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/others/negative/negationWords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/others/pronoun/1-personal-pronoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/others/pronoun/1-personal-pronoun.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/others/pronoun/2-personal-pronoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/others/pronoun/2-personal-pronoun.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/others/pronoun/3-personal-pronoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/others/pronoun/3-personal-pronoun.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/preprocess/emotion_words_31264.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/preprocess/emotion_words_31264.csv -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/preprocess/preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/preprocess/preprocess.ipynb -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/情感词汇本体.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/情感词汇本体.xlsx -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/情感词汇本体库说明文档.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/Chinese/大连理工大学情感词汇本体库/情感词汇本体库说明文档.doc -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/HowNet/intensifierWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/HowNet/intensifierWords.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/HowNet/正面情感词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/HowNet/正面情感词语(英文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/HowNet/正面评价词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/HowNet/正面评价词语(英文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/HowNet/程度级别词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/HowNet/程度级别词语(英文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/HowNet/负面情感词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/HowNet/负面情感词语(英文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/HowNet/负面评价词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/HowNet/负面评价词语(英文).txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/NRC/NRC-Emotion-Intensity-Lexicon-v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/NRC/NRC-Emotion-Intensity-Lexicon-v1.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/NRC/NRC-Emotion-Lexicon-Wordlevel-v0.92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/NRC/NRC-Emotion-Lexicon-Wordlevel-v0.92.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/NRC/preprocess/preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/NRC/preprocess/preprocess.ipynb -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/NRC/readme-intensity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/NRC/readme-intensity.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/NRC/readme-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/NRC/readme-lexicon.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/others/negative/negationWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/others/negative/negationWords.txt -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/others/pronoun/1-personal-pronoun.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/others/pronoun/2-personal-pronoun.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preprocess/BERT_Emo/resources/English/others/pronoun/3-personal-pronoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/BERT_Emo/resources/English/others/pronoun/3-personal-pronoun.txt -------------------------------------------------------------------------------- /preprocess/EANN_Text/events_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/EANN_Text/events_clustering.py -------------------------------------------------------------------------------- /preprocess/EANN_Text/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/EANN_Text/run.sh -------------------------------------------------------------------------------- /preprocess/bm25/retrieve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/bm25/retrieve.py -------------------------------------------------------------------------------- /preprocess/bm25/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/bm25/run.sh -------------------------------------------------------------------------------- /preprocess/graph_init/init_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/graph_init/init_graph.py -------------------------------------------------------------------------------- /preprocess/graph_init/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/graph_init/run.sh -------------------------------------------------------------------------------- /preprocess/tokenize/get_articles_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/tokenize/get_articles_tokens.py -------------------------------------------------------------------------------- /preprocess/tokenize/get_post_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/tokenize/get_post_tokens.py -------------------------------------------------------------------------------- /preprocess/tokenize/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/tokenize/run.sh -------------------------------------------------------------------------------- /preprocess/tokens_recognition/Twitter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/tokens_recognition/Twitter.ipynb -------------------------------------------------------------------------------- /preprocess/tokens_recognition/Weibo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/tokens_recognition/Weibo.ipynb -------------------------------------------------------------------------------- /preprocess/tokens_recognition/resources/pattern_words_Chinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/tokens_recognition/resources/pattern_words_Chinese.txt -------------------------------------------------------------------------------- /preprocess/tokens_recognition/resources/pattern_words_English.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICTMCG/Pref-FEND/HEAD/preprocess/tokens_recognition/resources/pattern_words_English.txt --------------------------------------------------------------------------------