├── Pos_Tagging ├── POS_Tagging.ipynb ├── config.py ├── lib.py ├── pos.py └── process_data.py ├── README.md ├── image ├── text_generation1.png ├── text_generation2.png └── text_generation3.png ├── machine_translation ├── RNN │ └── machine_translation.ipynb └── transfomer │ ├── data_loader.py │ ├── lib.py │ └── nmt_transformer.py ├── text_classifier └── classifier.ipynb └── text_generation ├── app.py ├── config.py ├── crawl.py ├── data_process.py ├── lib.py ├── predict.py └── templates ├── index.html └── result.html /Pos_Tagging/POS_Tagging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/Pos_Tagging/POS_Tagging.ipynb -------------------------------------------------------------------------------- /Pos_Tagging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/Pos_Tagging/config.py -------------------------------------------------------------------------------- /Pos_Tagging/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/Pos_Tagging/lib.py -------------------------------------------------------------------------------- /Pos_Tagging/pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/Pos_Tagging/pos.py -------------------------------------------------------------------------------- /Pos_Tagging/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/Pos_Tagging/process_data.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/README.md -------------------------------------------------------------------------------- /image/text_generation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/image/text_generation1.png -------------------------------------------------------------------------------- /image/text_generation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/image/text_generation2.png -------------------------------------------------------------------------------- /image/text_generation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/image/text_generation3.png -------------------------------------------------------------------------------- /machine_translation/RNN/machine_translation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/machine_translation/RNN/machine_translation.ipynb -------------------------------------------------------------------------------- /machine_translation/transfomer/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/machine_translation/transfomer/data_loader.py -------------------------------------------------------------------------------- /machine_translation/transfomer/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/machine_translation/transfomer/lib.py -------------------------------------------------------------------------------- /machine_translation/transfomer/nmt_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/machine_translation/transfomer/nmt_transformer.py -------------------------------------------------------------------------------- /text_classifier/classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_classifier/classifier.ipynb -------------------------------------------------------------------------------- /text_generation/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/app.py -------------------------------------------------------------------------------- /text_generation/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/config.py -------------------------------------------------------------------------------- /text_generation/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/crawl.py -------------------------------------------------------------------------------- /text_generation/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/data_process.py -------------------------------------------------------------------------------- /text_generation/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/lib.py -------------------------------------------------------------------------------- /text_generation/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/predict.py -------------------------------------------------------------------------------- /text_generation/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/templates/index.html -------------------------------------------------------------------------------- /text_generation/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuchuuanh/NLP/HEAD/text_generation/templates/result.html --------------------------------------------------------------------------------