gitextract_sl_11rs9/ ├── Financial_NLP/ │ └── final_demo/ │ ├── README.md │ ├── __init__.py │ ├── data_prepare.py │ ├── extract_feature.py │ ├── main.py │ ├── train_model.py │ └── util.py ├── ML/ │ ├── DecisionTree/ │ │ ├── Boosting.py │ │ ├── RandomForest.py │ │ ├── decision_tree.py │ │ ├── titanic_data_analy.ipynb │ │ ├── tree_main.py │ │ └── xgboost_demo.py │ ├── LogisticRegression_MEM/ │ │ └── LR_MEM_demo.py │ ├── Perce_SVM/ │ │ ├── SVM.py │ │ └── perceptron.py │ ├── REDAME.md │ ├── TensorDemo/ │ │ ├── NN_tf.py │ │ └── README.md │ └── data/ │ └── adult/ │ ├── adult_deal_value.data │ └── adult_deal_value.test ├── NLP/ │ ├── AutoTitle_F/ │ │ ├── configs/ │ │ │ ├── make_vocab.yaml │ │ │ ├── predict.yaml │ │ │ ├── process.yaml │ │ │ └── train_model.yaml │ │ ├── data/ │ │ │ ├── __init__.py │ │ │ ├── batcher.py │ │ │ ├── data.py │ │ │ └── data_processed.py │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ ├── adaptive.py │ │ │ ├── loss.py │ │ │ ├── lr_scheduler.py │ │ │ ├── optims.py │ │ │ └── seq2seq.py │ │ ├── pycocoevalcap/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── bleu/ │ │ │ │ ├── LICENSE │ │ │ │ ├── __init__.py │ │ │ │ ├── bleu.py │ │ │ │ └── bleu_scorer.py │ │ │ ├── cider/ │ │ │ │ ├── __init__.py │ │ │ │ ├── cider.py │ │ │ │ └── cider_scorer.py │ │ │ ├── license.txt │ │ │ ├── meteor/ │ │ │ │ ├── __init__.py │ │ │ │ ├── meteor-1.5.jar │ │ │ │ ├── meteor.py │ │ │ │ └── tests/ │ │ │ │ └── test_meteor.py │ │ │ ├── rouge/ │ │ │ │ ├── __init__.py │ │ │ │ └── rouge.py │ │ │ └── test_eval.py │ │ ├── submit.py │ │ └── train.py │ ├── GAN&NLP.md │ ├── Multi_Label/ │ │ └── ShengCe/ │ │ ├── generate_submit.py │ │ ├── train_model.py │ │ └── util.py │ ├── Seq2Seq/ │ │ ├── __init__.py │ │ ├── data_util.py │ │ ├── main.py │ │ ├── seq2seq_attn.py │ │ ├── seq2seq_model.py │ │ └── text_summarizer.py │ ├── Text_CNN/ │ │ ├── process_data.py │ │ ├── text_cnn_main.py │ │ └── text_cnn_model.py │ └── daguan/ │ ├── README.md │ ├── data_analy.py │ ├── lr_scheduler.py │ ├── main.py │ ├── model.py │ ├── optims.py │ └── predict.py └── README.md