gitextract_cg5yuxp9/ ├── .gitignore ├── README.md └── src/ ├── codes/ │ ├── 00.run_etnlp_preprocessing.sh │ ├── 01.run_etnlp_evaluator.sh │ ├── 02.run_etnlp_extractor.sh │ ├── 03.run_etnlp_visualizer_inter.sh │ ├── 04.run_etnlp_visualizer_sbs.sh │ ├── api/ │ │ ├── __init__.py │ │ ├── embedding_evaluator.py │ │ ├── embedding_extractor.py │ │ ├── embedding_preprocessing.py │ │ └── embedding_visualizer.py │ ├── embeddings/ │ │ ├── __init__.py │ │ ├── embedding_configs.py │ │ ├── embedding_models.py │ │ └── embedding_utils.py │ ├── etnlp_api.py │ ├── requirements.txt │ ├── setup.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── emb_utils.py │ │ ├── embedding_io.py │ │ ├── eval_utils.py │ │ ├── file_utils.py │ │ ├── string_utils.py │ │ ├── vectors.py │ │ └── word.py │ └── visualizer/ │ ├── README.md │ ├── __init__.py │ ├── outof_w2vec.dict │ ├── static/ │ │ └── style.css │ ├── templates/ │ │ ├── app.html │ │ └── search.html │ └── visualizer_sbs.py ├── data/ │ ├── embedding_analogies/ │ │ ├── english/ │ │ │ └── english-word-analogy.txt │ │ ├── portuguese/ │ │ │ ├── LX-4WAnalogies-ETNLP.txt │ │ │ ├── LX-4WAnalogies.txt │ │ │ ├── POST_TAG_vocabulary.txt │ │ │ ├── evaluator_results.txt │ │ │ └── vocab.txt │ │ └── vi/ │ │ ├── Multi_evaluator_results.txt │ │ ├── analogy_list_vi_ner.txt │ │ └── elmo_results_out_dict.txt │ ├── embedding_dicts/ │ │ ├── C2V.vec │ │ ├── ELMO_23.vec │ │ ├── FastText_23.vec │ │ ├── MULTI_23.vec │ │ ├── W2V_C2V_23.vec │ │ ├── baomoi_c2v_dims_300.vec │ │ └── vn_elmo_medium_c2v.vec │ ├── glove2vec_dicts/ │ │ ├── glove1.vec │ │ ├── glove1_w2v.vec │ │ ├── glove2.vec │ │ └── glove2_w2v.vec │ └── vocab.txt └── examples/ ├── test1_etnlp_preprocessing.py ├── test2_etnlp_extractor.py ├── test3_etnlp_evaluator.py └── test4_etnlp_visualizer.py