├── .gitignore ├── ELMO ├── LICENSE ├── README.md ├── config.py ├── data.py ├── dataset.py ├── main.py ├── models │ ├── __init__.py │ ├── char_cnn.py │ └── elmo.py └── trainer.py ├── README.md ├── __init__.py ├── bert ├── README.md ├── __init__.py ├── app.py ├── extract_features.py ├── modeling.py ├── optimization.py └── tokenization.py ├── bert_classification.py ├── doc └── 预训练模型.pptx └── word2vec └── word2vec_embedding.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/.gitignore -------------------------------------------------------------------------------- /ELMO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/LICENSE -------------------------------------------------------------------------------- /ELMO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/README.md -------------------------------------------------------------------------------- /ELMO/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/config.py -------------------------------------------------------------------------------- /ELMO/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/data.py -------------------------------------------------------------------------------- /ELMO/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/dataset.py -------------------------------------------------------------------------------- /ELMO/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/main.py -------------------------------------------------------------------------------- /ELMO/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELMO/models/char_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/models/char_cnn.py -------------------------------------------------------------------------------- /ELMO/models/elmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/models/elmo.py -------------------------------------------------------------------------------- /ELMO/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/ELMO/trainer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/__init__.py -------------------------------------------------------------------------------- /bert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert/README.md -------------------------------------------------------------------------------- /bert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert/__init__.py -------------------------------------------------------------------------------- /bert/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert/app.py -------------------------------------------------------------------------------- /bert/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert/extract_features.py -------------------------------------------------------------------------------- /bert/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert/modeling.py -------------------------------------------------------------------------------- /bert/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert/optimization.py -------------------------------------------------------------------------------- /bert/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert/tokenization.py -------------------------------------------------------------------------------- /bert_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/bert_classification.py -------------------------------------------------------------------------------- /doc/预训练模型.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/doc/预训练模型.pptx -------------------------------------------------------------------------------- /word2vec/word2vec_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YC-wind/embedding_study/HEAD/word2vec/word2vec_embedding.py --------------------------------------------------------------------------------