├── .gitignore ├── AWS-tutorial.md ├── Docker-tutorial.md ├── common ├── README.md └── download_utils.py ├── docker ├── Dockerfile ├── requirements.txt └── welcome_message.txt ├── honor ├── README.md ├── datasets.py ├── download_cornell.sh ├── download_opensubs.sh └── example.py ├── project ├── .gitignore ├── dialogue_manager.py ├── main_bot.py ├── utils.py ├── week5-project-Soln.ipynb └── week5-project.ipynb ├── week1 ├── grader.py ├── metrics.py ├── week1-MultilabelClassification-NewSolution.ipynb ├── week1-MultilabelClassification-Solution.ipynb └── week1-MultilabelClassification.ipynb ├── week2 ├── evaluation.py ├── week2-NER-MySolution.ipynb ├── week2-NER.ipynb ├── week2-NER_peerreview1.ipynb ├── week2-NER_peerreview3.ipynb ├── week2-NER_peerreview4.ipynb └── week2-NER_v1_1_peerreview2.ipynb ├── week3 ├── .gitignore ├── grader.py ├── util.py ├── week3-Embeddings-Solution.ipynb └── week3-Embeddings.ipynb └── week4 ├── encoder-decoder-pic.png ├── week4-seq2seq-Soln.ipynb ├── week4-seq2seq.ipynb ├── week4-seq2seq_eval1.ipynb ├── week4-seq2seq_eval2.ipynb └── week4-seq2seq_eval3.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/.gitignore -------------------------------------------------------------------------------- /AWS-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/AWS-tutorial.md -------------------------------------------------------------------------------- /Docker-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/Docker-tutorial.md -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/common/README.md -------------------------------------------------------------------------------- /common/download_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/common/download_utils.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/docker/requirements.txt -------------------------------------------------------------------------------- /docker/welcome_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/docker/welcome_message.txt -------------------------------------------------------------------------------- /honor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/honor/README.md -------------------------------------------------------------------------------- /honor/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/honor/datasets.py -------------------------------------------------------------------------------- /honor/download_cornell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/honor/download_cornell.sh -------------------------------------------------------------------------------- /honor/download_opensubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/honor/download_opensubs.sh -------------------------------------------------------------------------------- /honor/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/honor/example.py -------------------------------------------------------------------------------- /project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/project/.gitignore -------------------------------------------------------------------------------- /project/dialogue_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/project/dialogue_manager.py -------------------------------------------------------------------------------- /project/main_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/project/main_bot.py -------------------------------------------------------------------------------- /project/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/project/utils.py -------------------------------------------------------------------------------- /project/week5-project-Soln.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/project/week5-project-Soln.ipynb -------------------------------------------------------------------------------- /project/week5-project.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/project/week5-project.ipynb -------------------------------------------------------------------------------- /week1/grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week1/grader.py -------------------------------------------------------------------------------- /week1/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week1/metrics.py -------------------------------------------------------------------------------- /week1/week1-MultilabelClassification-NewSolution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week1/week1-MultilabelClassification-NewSolution.ipynb -------------------------------------------------------------------------------- /week1/week1-MultilabelClassification-Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week1/week1-MultilabelClassification-Solution.ipynb -------------------------------------------------------------------------------- /week1/week1-MultilabelClassification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week1/week1-MultilabelClassification.ipynb -------------------------------------------------------------------------------- /week2/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week2/evaluation.py -------------------------------------------------------------------------------- /week2/week2-NER-MySolution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week2/week2-NER-MySolution.ipynb -------------------------------------------------------------------------------- /week2/week2-NER.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week2/week2-NER.ipynb -------------------------------------------------------------------------------- /week2/week2-NER_peerreview1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week2/week2-NER_peerreview1.ipynb -------------------------------------------------------------------------------- /week2/week2-NER_peerreview3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week2/week2-NER_peerreview3.ipynb -------------------------------------------------------------------------------- /week2/week2-NER_peerreview4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week2/week2-NER_peerreview4.ipynb -------------------------------------------------------------------------------- /week2/week2-NER_v1_1_peerreview2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week2/week2-NER_v1_1_peerreview2.ipynb -------------------------------------------------------------------------------- /week3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week3/.gitignore -------------------------------------------------------------------------------- /week3/grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week3/grader.py -------------------------------------------------------------------------------- /week3/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week3/util.py -------------------------------------------------------------------------------- /week3/week3-Embeddings-Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week3/week3-Embeddings-Solution.ipynb -------------------------------------------------------------------------------- /week3/week3-Embeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week3/week3-Embeddings.ipynb -------------------------------------------------------------------------------- /week4/encoder-decoder-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week4/encoder-decoder-pic.png -------------------------------------------------------------------------------- /week4/week4-seq2seq-Soln.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week4/week4-seq2seq-Soln.ipynb -------------------------------------------------------------------------------- /week4/week4-seq2seq.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week4/week4-seq2seq.ipynb -------------------------------------------------------------------------------- /week4/week4-seq2seq_eval1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week4/week4-seq2seq_eval1.ipynb -------------------------------------------------------------------------------- /week4/week4-seq2seq_eval2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week4/week4-seq2seq_eval2.ipynb -------------------------------------------------------------------------------- /week4/week4-seq2seq_eval3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsanghi/HSE-NLP-Coursera/HEAD/week4/week4-seq2seq_eval3.ipynb --------------------------------------------------------------------------------