gitextract_l5lnwbvq/ ├── .gitignore ├── LICENSE.md ├── Matcher/ │ ├── KeywordMatcher.py │ ├── __init__.py │ ├── bm25Matcher.py │ ├── fuzzyMatcher.py │ ├── matcher.py │ ├── quickSearch.py │ ├── vectorMatcher.py │ └── wordWeightMatcher.py ├── README.md ├── __init__.py ├── article.py ├── chat.py ├── corpus.py ├── data/ │ ├── EvaluateLog.txt │ ├── SegTitles.txt │ ├── Titles.txt │ ├── User_info.txt │ ├── processed_seged/ │ │ ├── seged_text.txt │ │ └── seged_text_title_only.txt │ ├── stopwords/ │ │ ├── chinese_sw.txt │ │ ├── gossiping.tag │ │ ├── ptt_words.txt │ │ └── specialMarks.txt │ └── tf_idf.model ├── filter.py ├── jieba_dictionary/ │ ├── dict.txt.big │ └── ptt_dic.txt ├── match.py ├── responsesEvaluate.py └── util/ ├── __init__.py └── fileReader.py