├── .gitignore ├── CNAME ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── chart.html └── table.html ├── chinese ├── chinese.md └── chinese_word_segmentation.md ├── english ├── automatic_speech_recognition.md ├── ccg_supertagging.md ├── common_sense.md ├── constituency_parsing.md ├── coreference_resolution.md ├── dependency_parsing.md ├── dialogue.md ├── domain_adaptation.md ├── entity_linking.md ├── grammatical_error_correction.md ├── information_extraction.md ├── language_modeling.md ├── lexical_normalization.md ├── machine_translation.md ├── multi-task_learning.md ├── multimodal.md ├── named_entity_recognition.md ├── natural_language_inference.md ├── part-of-speech_tagging.md ├── question_answering.md ├── relation_prediction.md ├── relationship_extraction.md ├── semantic_parsing.md ├── semantic_role_labeling.md ├── semantic_textual_similarity.md ├── sentiment_analysis.md ├── shallow_syntax.md ├── simplification.md ├── stance_detection.md ├── summarization.md ├── taxonomy_learning.md ├── temporal_processing.md ├── text_classification.md └── word_sense_disambiguation.md ├── hindi └── hindi.md ├── img ├── edit_file.png └── propose_file_change.png ├── jekyll_instructions.md ├── spanish └── entity_linking.md ├── structured ├── README.md ├── export.py └── requirements.txt └── vietnamese └── vietnamese.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | Gemfile* 3 | venv 4 | .idea 5 | structured.json 6 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | nlpprogress.com -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/_includes/chart.html -------------------------------------------------------------------------------- /_includes/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/_includes/table.html -------------------------------------------------------------------------------- /chinese/chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/chinese/chinese.md -------------------------------------------------------------------------------- /chinese/chinese_word_segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/chinese/chinese_word_segmentation.md -------------------------------------------------------------------------------- /english/automatic_speech_recognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/automatic_speech_recognition.md -------------------------------------------------------------------------------- /english/ccg_supertagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/ccg_supertagging.md -------------------------------------------------------------------------------- /english/common_sense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/common_sense.md -------------------------------------------------------------------------------- /english/constituency_parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/constituency_parsing.md -------------------------------------------------------------------------------- /english/coreference_resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/coreference_resolution.md -------------------------------------------------------------------------------- /english/dependency_parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/dependency_parsing.md -------------------------------------------------------------------------------- /english/dialogue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/dialogue.md -------------------------------------------------------------------------------- /english/domain_adaptation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/domain_adaptation.md -------------------------------------------------------------------------------- /english/entity_linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/entity_linking.md -------------------------------------------------------------------------------- /english/grammatical_error_correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/grammatical_error_correction.md -------------------------------------------------------------------------------- /english/information_extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/information_extraction.md -------------------------------------------------------------------------------- /english/language_modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/language_modeling.md -------------------------------------------------------------------------------- /english/lexical_normalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/lexical_normalization.md -------------------------------------------------------------------------------- /english/machine_translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/machine_translation.md -------------------------------------------------------------------------------- /english/multi-task_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/multi-task_learning.md -------------------------------------------------------------------------------- /english/multimodal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/multimodal.md -------------------------------------------------------------------------------- /english/named_entity_recognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/named_entity_recognition.md -------------------------------------------------------------------------------- /english/natural_language_inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/natural_language_inference.md -------------------------------------------------------------------------------- /english/part-of-speech_tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/part-of-speech_tagging.md -------------------------------------------------------------------------------- /english/question_answering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/question_answering.md -------------------------------------------------------------------------------- /english/relation_prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/relation_prediction.md -------------------------------------------------------------------------------- /english/relationship_extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/relationship_extraction.md -------------------------------------------------------------------------------- /english/semantic_parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/semantic_parsing.md -------------------------------------------------------------------------------- /english/semantic_role_labeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/semantic_role_labeling.md -------------------------------------------------------------------------------- /english/semantic_textual_similarity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/semantic_textual_similarity.md -------------------------------------------------------------------------------- /english/sentiment_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/sentiment_analysis.md -------------------------------------------------------------------------------- /english/shallow_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/shallow_syntax.md -------------------------------------------------------------------------------- /english/simplification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/simplification.md -------------------------------------------------------------------------------- /english/stance_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/stance_detection.md -------------------------------------------------------------------------------- /english/summarization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/summarization.md -------------------------------------------------------------------------------- /english/taxonomy_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/taxonomy_learning.md -------------------------------------------------------------------------------- /english/temporal_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/temporal_processing.md -------------------------------------------------------------------------------- /english/text_classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/text_classification.md -------------------------------------------------------------------------------- /english/word_sense_disambiguation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/english/word_sense_disambiguation.md -------------------------------------------------------------------------------- /hindi/hindi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/hindi/hindi.md -------------------------------------------------------------------------------- /img/edit_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/img/edit_file.png -------------------------------------------------------------------------------- /img/propose_file_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/img/propose_file_change.png -------------------------------------------------------------------------------- /jekyll_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/jekyll_instructions.md -------------------------------------------------------------------------------- /spanish/entity_linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/spanish/entity_linking.md -------------------------------------------------------------------------------- /structured/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/structured/README.md -------------------------------------------------------------------------------- /structured/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/structured/export.py -------------------------------------------------------------------------------- /structured/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vietnamese/vietnamese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wepe/NLP-progress/HEAD/vietnamese/vietnamese.md --------------------------------------------------------------------------------