├── .gitignore ├── Bengali ├── README.md └── data │ └── README.md ├── Hindi ├── README.md └── data │ └── README.md ├── LICENSE ├── README.md ├── Tamil ├── README.md └── data │ └── README.md └── Telugu ├── README.md └── data └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SudalaiRajkumar/IndicNLP/HEAD/.gitignore -------------------------------------------------------------------------------- /Bengali/README.md: -------------------------------------------------------------------------------- 1 | Resources for Bengali language 2 | -------------------------------------------------------------------------------- /Bengali/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SudalaiRajkumar/IndicNLP/HEAD/Bengali/data/README.md -------------------------------------------------------------------------------- /Hindi/README.md: -------------------------------------------------------------------------------- 1 | Resources for Hindi Language 2 | -------------------------------------------------------------------------------- /Hindi/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SudalaiRajkumar/IndicNLP/HEAD/Hindi/data/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SudalaiRajkumar/IndicNLP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SudalaiRajkumar/IndicNLP/HEAD/README.md -------------------------------------------------------------------------------- /Tamil/README.md: -------------------------------------------------------------------------------- 1 | Resources related to Tamil Language 2 | -------------------------------------------------------------------------------- /Tamil/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SudalaiRajkumar/IndicNLP/HEAD/Tamil/data/README.md -------------------------------------------------------------------------------- /Telugu/README.md: -------------------------------------------------------------------------------- 1 | Resources for Telugu language 2 | -------------------------------------------------------------------------------- /Telugu/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SudalaiRajkumar/IndicNLP/HEAD/Telugu/data/README.md --------------------------------------------------------------------------------