gitextract_6ic6_av9/ ├── .gitignore ├── LSTM_crf/ │ └── torch_crf.ipynb ├── P000CheatSheet/ │ ├── Matrix_multiplication.ipynb │ ├── Untitled.ipynb │ ├── pack_padded_and_pad_packed.ipynb │ ├── posEmbeding.ipynb │ ├── py-rouge.ipynb │ ├── pytorch_nn_cheat_sheet.ipynb │ ├── struct_tf.ipynb │ └── torch_gather.ipynb ├── P001-Naive-Bayes-Text-Classifier/ │ ├── Database/ │ │ └── SogouC/ │ │ ├── ClassList.txt │ │ └── Sample/ │ │ ├── C000008/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000010/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000013/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000014/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000016/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000020/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000022/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000023/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ └── C000024/ │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ └── 19.txt │ ├── NaiveBayes-TextClassifier.ipynb │ ├── stopwords_cn.txt │ └── 朴素贝叶斯新闻分类.html ├── P002-Pytorch-Two-Layers-Neural-Net/ │ └── two_layer_neural_net.ipynb ├── P003-pytorch-Language-Model/ │ ├── _1_lm_lstm.ipynb │ ├── _2_lm_lstm_bll.ipynb │ └── _3_lm_lstm_lc.ipynb ├── P004-Pytorch-Word2Vec/ │ └── PytorchWord2Vec.ipynb ├── P005-Pytorch-Text-Classifer/ │ ├── _0_情感分类_词向量平均.ipynb │ ├── _1_attention_wordavg.ipynb │ └── _2_self_attention_wordavg.ipynb ├── P006TheAnnotatedTransformer/ │ ├── model_transformer.ipynb │ └── test.ipynb ├── P007PytorchPointerGeneratorNetwork/ │ ├── make_finished_files.ipynb │ ├── pointer-generator/ │ │ ├── __init__.py │ │ ├── attention_decoder.py │ │ ├── batcher.py │ │ ├── beam_search.py │ │ ├── data.py │ │ ├── decode.py │ │ ├── inspect_checkpoint.py │ │ ├── model.py │ │ ├── run_summarization.py │ │ └── util.py │ ├── pointer-generator-network-test.ipynb │ ├── rouge_test.ipynb │ ├── test.ipynb │ └── weibo_news_preprocession.ipynb ├── P008GPT2TextSummary/ │ ├── Untitled.ipynb │ └── gpt2_text_summary.ipynb ├── P009StructureLearning/ │ ├── POS-RNN-hw.ipynb │ ├── dev.txt │ ├── pos-hmm-hw-solution.ipynb │ ├── pos-hmm-hw.ipynb │ └── train.txt ├── P010Model/ │ ├── data.pk │ └── model_transformer.py ├── P011WordSegmenting/ │ └── chinese_word_segmenting.ipynb ├── P012translate/ │ ├── machine_translation.ipynb │ └── torch_test.ipynb ├── P013BertCode/ │ └── bertTrainTest.ipynb ├── P014Aho-Corasick-algorithm/ │ └── AC.ipynb ├── named_entity_recognition/ │ ├── .gitignore │ ├── README.md │ ├── ResumeNER/ │ │ ├── dev.char.bmes │ │ ├── test.char.bmes │ │ └── train.char.bmes │ ├── ckpts/ │ │ ├── bilstm.pkl │ │ ├── bilstm_crf.pkl │ │ ├── crf.pkl │ │ └── hmm.pkl │ ├── data.py │ ├── evaluate.py │ ├── evaluating.py │ ├── main.py │ ├── models/ │ │ ├── __init__.py │ │ ├── bilstm.py │ │ ├── bilstm_crf.py │ │ ├── config.py │ │ ├── crf.py │ │ ├── hmm.py │ │ └── util.py │ ├── output.txt │ ├── requirement.txt │ ├── test.py │ └── utils.py └── word2vector/ ├── fasttext/ │ ├── README.md │ ├── fasttext.py │ ├── run.sh │ ├── utils.py │ └── wget.py ├── glove/ │ ├── README.md │ ├── glove.py │ ├── run.sh │ ├── utils.py │ └── wget.py ├── ngrams/ │ ├── README.md │ ├── gen_model.sh │ └── lm.py ├── requirements.txt └── word2vec/ ├── README.md ├── debug.ipynb ├── run.sh ├── utils.py ├── wget.py ├── word2vec-python3.ipynb └── word2vec.py