├── .gitattributes ├── Custom NER Code Demonstration ├── Code files │ ├── CRF.ipynb │ └── util.py ├── Commented code files │ └── CRF_Commented.ipynb └── Dataset │ ├── label_test │ ├── label_train │ ├── sent_test │ └── sent_train ├── Dependency Parsing ├── Code files │ ├── Dep_parsing1_ipynb_txt.ipynb │ ├── Dep_parsing2_ipynb_txt.ipynb │ ├── Dep_parsing3_ipynb_txt.ipynb │ └── images │ │ ├── active.png │ │ ├── keywords.png │ │ ├── regex.png │ │ ├── results.png │ │ └── spacy_pipeline.png ├── Commented code files │ ├── Dep_parsing1_Commented.ipynb │ ├── Dep_parsing2_Commented.ipynb │ ├── Dep_parsing3_Commented.ipynb │ └── images │ │ ├── active.png │ │ ├── keywords.png │ │ ├── regex.png │ │ ├── results.png │ │ └── spacy_pipeline.png └── Dataset │ └── active_passive.csv ├── FAQ1.PNG ├── Heteronyms Detection POS Tagging Use Case ├── Code files │ └── Heteronyms_POS.ipynb └── Commented code files │ └── Heteronyms_POS_Commented.ipynb ├── NER Code Demonstration ├── Code files │ └── NER.ipynb └── Commented code files │ └── NER_Commented.ipynb ├── POS Tagging Case Study ├── Code files │ ├── POS1_ipynb_txt.ipynb │ ├── POS2_ipynb_txt.ipynb │ ├── POS3_ipynb_txt.ipynb │ ├── POS4_ipynb_txt.ipynb │ └── images │ │ ├── active.png │ │ ├── keywords.png │ │ ├── regex.png │ │ ├── results.png │ │ └── spacy_pipeline.png ├── Commented code files │ ├── POS1_Commented.ipynb │ ├── POS2_Commented.ipynb │ ├── POS3_Commented.ipynb │ ├── POS4_Commented.ipynb │ └── images │ │ ├── active.png │ │ ├── keywords.png │ │ ├── regex.png │ │ ├── results.png │ │ └── spacy_pipeline.png └── Dataset │ └── Samsung.txt ├── README.md └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/.gitattributes -------------------------------------------------------------------------------- /Custom NER Code Demonstration/Code files/CRF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Custom NER Code Demonstration/Code files/CRF.ipynb -------------------------------------------------------------------------------- /Custom NER Code Demonstration/Code files/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Custom NER Code Demonstration/Code files/util.py -------------------------------------------------------------------------------- /Custom NER Code Demonstration/Commented code files/CRF_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Custom NER Code Demonstration/Commented code files/CRF_Commented.ipynb -------------------------------------------------------------------------------- /Custom NER Code Demonstration/Dataset/label_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Custom NER Code Demonstration/Dataset/label_test -------------------------------------------------------------------------------- /Custom NER Code Demonstration/Dataset/label_train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Custom NER Code Demonstration/Dataset/label_train -------------------------------------------------------------------------------- /Custom NER Code Demonstration/Dataset/sent_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Custom NER Code Demonstration/Dataset/sent_test -------------------------------------------------------------------------------- /Custom NER Code Demonstration/Dataset/sent_train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Custom NER Code Demonstration/Dataset/sent_train -------------------------------------------------------------------------------- /Dependency Parsing/Code files/Dep_parsing1_ipynb_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/Dep_parsing1_ipynb_txt.ipynb -------------------------------------------------------------------------------- /Dependency Parsing/Code files/Dep_parsing2_ipynb_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/Dep_parsing2_ipynb_txt.ipynb -------------------------------------------------------------------------------- /Dependency Parsing/Code files/Dep_parsing3_ipynb_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/Dep_parsing3_ipynb_txt.ipynb -------------------------------------------------------------------------------- /Dependency Parsing/Code files/images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/images/active.png -------------------------------------------------------------------------------- /Dependency Parsing/Code files/images/keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/images/keywords.png -------------------------------------------------------------------------------- /Dependency Parsing/Code files/images/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/images/regex.png -------------------------------------------------------------------------------- /Dependency Parsing/Code files/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/images/results.png -------------------------------------------------------------------------------- /Dependency Parsing/Code files/images/spacy_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Code files/images/spacy_pipeline.png -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/Dep_parsing1_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/Dep_parsing1_Commented.ipynb -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/Dep_parsing2_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/Dep_parsing2_Commented.ipynb -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/Dep_parsing3_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/Dep_parsing3_Commented.ipynb -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/images/active.png -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/images/keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/images/keywords.png -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/images/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/images/regex.png -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/images/results.png -------------------------------------------------------------------------------- /Dependency Parsing/Commented code files/images/spacy_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Commented code files/images/spacy_pipeline.png -------------------------------------------------------------------------------- /Dependency Parsing/Dataset/active_passive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Dependency Parsing/Dataset/active_passive.csv -------------------------------------------------------------------------------- /FAQ1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/FAQ1.PNG -------------------------------------------------------------------------------- /Heteronyms Detection POS Tagging Use Case/Code files/Heteronyms_POS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Heteronyms Detection POS Tagging Use Case/Code files/Heteronyms_POS.ipynb -------------------------------------------------------------------------------- /Heteronyms Detection POS Tagging Use Case/Commented code files/Heteronyms_POS_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/Heteronyms Detection POS Tagging Use Case/Commented code files/Heteronyms_POS_Commented.ipynb -------------------------------------------------------------------------------- /NER Code Demonstration/Code files/NER.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/NER Code Demonstration/Code files/NER.ipynb -------------------------------------------------------------------------------- /NER Code Demonstration/Commented code files/NER_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/NER Code Demonstration/Commented code files/NER_Commented.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/POS1_ipynb_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/POS1_ipynb_txt.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/POS2_ipynb_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/POS2_ipynb_txt.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/POS3_ipynb_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/POS3_ipynb_txt.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/POS4_ipynb_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/POS4_ipynb_txt.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/images/active.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/images/keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/images/keywords.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/images/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/images/regex.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/images/results.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Code files/images/spacy_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Code files/images/spacy_pipeline.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/POS1_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/POS1_Commented.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/POS2_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/POS2_Commented.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/POS3_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/POS3_Commented.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/POS4_Commented.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/POS4_Commented.ipynb -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/images/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/images/active.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/images/keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/images/keywords.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/images/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/images/regex.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/images/results.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Commented code files/images/spacy_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Commented code files/images/spacy_pipeline.png -------------------------------------------------------------------------------- /POS Tagging Case Study/Dataset/Samsung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/POS Tagging Case Study/Dataset/Samsung.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentUpgrad/Syntactic-Processing/HEAD/requirements.txt --------------------------------------------------------------------------------