├── .DS_Store ├── .gitignore ├── README.md ├── codes ├── deeppavlov │ └── README.md ├── snli │ ├── README.md │ ├── core │ │ ├── chat_log.py │ │ └── create_dir.py │ ├── dataset │ │ ├── dataset_provider.py │ │ └── readers │ │ │ └── snli_import.py │ └── snli.py ├── soynlp │ └── empty └── yandex │ ├── README.md │ ├── week01-embedding-seminar.ipynb │ └── week02_classification_seminar.ipynb └── resource ├── material └── README.md └── slides ├── MIT-data-science ├── .gitignore ├── Chapter 11. Introduction to Machine Learning.pdf ├── Chapter 12. Clustering.pdf ├── Chapter13,14,15_MJLEE.pptx ├── MIT6_0002F16_lec1_cwjun.pdf ├── MIT6_0002F16_lec2_cwjun.pdf ├── MIT6_0002F16_lec5_lec6_ssg.pdf └── MIT6_0002F16_lec9_Eon.pdf ├── README.md ├── deeppavlov ├── .gitignore └── deeppavlov_Automatic spelling correction.pdf ├── linear-algebra ├── Chapter_3_Least_square.pptx └── README.md ├── paper-review ├── .gitignore ├── Character-Aware Neural Language Models.pdf ├── Character-level CNN for text classification.pptx ├── Efficient Character-level Document Classification by Combining Convolution and Recurrent Layers.pptx ├── Learning phrase representation using RNN Encoder-Decoder for SMT.pdf ├── MASS.pdf ├── Robustly optimized BERT Pretraining Approaches.pptx ├── TransformerXL.pdf ├── VDCNN.pdf └── seqtoseq_attention_20190417.pdf ├── soynlp ├── Soynlp 2일차.pptx ├── empty ├── fastcampus_1일차.pptx └── fastcampus_day3 │ ├── From frequency to meaning, Vector space models of semantics.pdf │ ├── Korean conjugation.pdf │ ├── Korean lemmatization.pdf │ ├── L2_L1 regularization.pdf │ ├── LSA.pdf │ ├── Logistic regression with L1, L2 regularization and keyword extraction.pdf │ └── Neural Word Embedding as Implicit Matrix Factorization.pdf └── yandex ├── 2월 2째주-yandex- week04_seq2seq_seminar.pptx ├── 2월 3째주-yandex-week04_seq2seq_seminar layer normalization.pptx └── yandex-week-07-mt-02.pptx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/README.md -------------------------------------------------------------------------------- /codes/deeppavlov/README.md: -------------------------------------------------------------------------------- 1 | # DeepPavlov 2 | -------------------------------------------------------------------------------- /codes/snli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/snli/README.md -------------------------------------------------------------------------------- /codes/snli/core/chat_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/snli/core/chat_log.py -------------------------------------------------------------------------------- /codes/snli/core/create_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/snli/core/create_dir.py -------------------------------------------------------------------------------- /codes/snli/dataset/dataset_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/snli/dataset/dataset_provider.py -------------------------------------------------------------------------------- /codes/snli/dataset/readers/snli_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/snli/dataset/readers/snli_import.py -------------------------------------------------------------------------------- /codes/snli/snli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/snli/snli.py -------------------------------------------------------------------------------- /codes/soynlp/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/yandex/README.md: -------------------------------------------------------------------------------- 1 | # Yandex NLP school 2 | -------------------------------------------------------------------------------- /codes/yandex/week01-embedding-seminar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/yandex/week01-embedding-seminar.ipynb -------------------------------------------------------------------------------- /codes/yandex/week02_classification_seminar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/codes/yandex/week02_classification_seminar.ipynb -------------------------------------------------------------------------------- /resource/material/README.md: -------------------------------------------------------------------------------- 1 | # Material 2 | -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/Chapter 11. Introduction to Machine Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/MIT-data-science/Chapter 11. Introduction to Machine Learning.pdf -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/Chapter 12. Clustering.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/MIT-data-science/Chapter 12. Clustering.pdf -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/Chapter13,14,15_MJLEE.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/MIT-data-science/Chapter13,14,15_MJLEE.pptx -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/MIT6_0002F16_lec1_cwjun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/MIT-data-science/MIT6_0002F16_lec1_cwjun.pdf -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/MIT6_0002F16_lec2_cwjun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/MIT-data-science/MIT6_0002F16_lec2_cwjun.pdf -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/MIT6_0002F16_lec5_lec6_ssg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/MIT-data-science/MIT6_0002F16_lec5_lec6_ssg.pdf -------------------------------------------------------------------------------- /resource/slides/MIT-data-science/MIT6_0002F16_lec9_Eon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/MIT-data-science/MIT6_0002F16_lec9_Eon.pdf -------------------------------------------------------------------------------- /resource/slides/README.md: -------------------------------------------------------------------------------- 1 | # Slides 2 | -------------------------------------------------------------------------------- /resource/slides/deeppavlov/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/slides/deeppavlov/deeppavlov_Automatic spelling correction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/deeppavlov/deeppavlov_Automatic spelling correction.pdf -------------------------------------------------------------------------------- /resource/slides/linear-algebra/Chapter_3_Least_square.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/linear-algebra/Chapter_3_Least_square.pptx -------------------------------------------------------------------------------- /resource/slides/linear-algebra/README.md: -------------------------------------------------------------------------------- 1 | # Linear_algebra 2 | -------------------------------------------------------------------------------- /resource/slides/paper-review/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/slides/paper-review/Character-Aware Neural Language Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/Character-Aware Neural Language Models.pdf -------------------------------------------------------------------------------- /resource/slides/paper-review/Character-level CNN for text classification.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/Character-level CNN for text classification.pptx -------------------------------------------------------------------------------- /resource/slides/paper-review/Efficient Character-level Document Classification by Combining Convolution and Recurrent Layers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/Efficient Character-level Document Classification by Combining Convolution and Recurrent Layers.pptx -------------------------------------------------------------------------------- /resource/slides/paper-review/Learning phrase representation using RNN Encoder-Decoder for SMT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/Learning phrase representation using RNN Encoder-Decoder for SMT.pdf -------------------------------------------------------------------------------- /resource/slides/paper-review/MASS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/MASS.pdf -------------------------------------------------------------------------------- /resource/slides/paper-review/Robustly optimized BERT Pretraining Approaches.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/Robustly optimized BERT Pretraining Approaches.pptx -------------------------------------------------------------------------------- /resource/slides/paper-review/TransformerXL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/TransformerXL.pdf -------------------------------------------------------------------------------- /resource/slides/paper-review/VDCNN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/VDCNN.pdf -------------------------------------------------------------------------------- /resource/slides/paper-review/seqtoseq_attention_20190417.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/paper-review/seqtoseq_attention_20190417.pdf -------------------------------------------------------------------------------- /resource/slides/soynlp/Soynlp 2일차.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/Soynlp 2일차.pptx -------------------------------------------------------------------------------- /resource/slides/soynlp/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_1일차.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_1일차.pptx -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_day3/From frequency to meaning, Vector space models of semantics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_day3/From frequency to meaning, Vector space models of semantics.pdf -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_day3/Korean conjugation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_day3/Korean conjugation.pdf -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_day3/Korean lemmatization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_day3/Korean lemmatization.pdf -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_day3/L2_L1 regularization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_day3/L2_L1 regularization.pdf -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_day3/LSA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_day3/LSA.pdf -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_day3/Logistic regression with L1, L2 regularization and keyword extraction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_day3/Logistic regression with L1, L2 regularization and keyword extraction.pdf -------------------------------------------------------------------------------- /resource/slides/soynlp/fastcampus_day3/Neural Word Embedding as Implicit Matrix Factorization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/soynlp/fastcampus_day3/Neural Word Embedding as Implicit Matrix Factorization.pdf -------------------------------------------------------------------------------- /resource/slides/yandex/2월 2째주-yandex- week04_seq2seq_seminar.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/yandex/2월 2째주-yandex- week04_seq2seq_seminar.pptx -------------------------------------------------------------------------------- /resource/slides/yandex/2월 3째주-yandex-week04_seq2seq_seminar layer normalization.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/yandex/2월 3째주-yandex-week04_seq2seq_seminar layer normalization.pptx -------------------------------------------------------------------------------- /resource/slides/yandex/yandex-week-07-mt-02.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modudeepnlp/DeepNLP2019/HEAD/resource/slides/yandex/yandex-week-07-mt-02.pptx --------------------------------------------------------------------------------