Towards Leaving No Indic Language Behind: Building Monolingual Corpora, Benchmark and Models for Indic Languages
This repository contains the code and other resources for the paper published at ACL 2023.
Benchmark | Corpus | Models | Pretraining | Fine-tuning | Paper
IndicXTREME benchmark includes 9 tasks that can be broadly grouped into sentence classification (5), structure prediction (2), question answering (1), and sentence retrieval (1).
The list of tasks are as follows:
- IndicCOPA - [Dataset] - We manually translate the COPA test set into 18 Indic languages to create IndicCOPA
- IndicQA - [Dataset] - A manually curated cloze-style reading comprehension dataset that can be used for evaluating question-answering models in 11 Indic languages
- IndicXParaphrase - [Dataset] - A new, multilingual, and n-way parallel dataset for paraphrase detection in 10 Indic languages
- IndicSentiment - [Dataset] - A new, multilingual, and n-way parallel dataset for sentiment analysis in 13 Indic languages
- IndicXNLI - [Dataset] - Automatically translated version of XNLI in 11 Indic languages. Created by Divyanshu et. al. in this paper
- Naamapadam - [Dataset] - NER dataset with manually curated testsets for 9 Indic languages. Created by Arnav et. al in this paper
- MASSIVE - [Dataset] - This in an intent classification and slot-filling dataset created using user queries collected by Amazon Alexa for 7 Indic languages. Created by FitzGerald et. al. in this paper
- FLORES - [Dataset] - To evaluate the retrieval capabilities of models, we include the Indic parts of the FLORES-101 dataset. Available in 18 Indic languages. Created by NLLB Team et. al. in this paper
Language | Download Link | Language | Download Link |
---|---|---|---|
Assamese | Download | Malayalam | Download |
Bodo | Download | Manipuri | Download |
Bengali | Download | Marathi | Download |
Dogri | Download | Nepali | Download |
English | Download | Odia | Download |
Konkani | Download | Punjabi | Download |
Gujarati | Download | Sanskrit | Download |
Hindi | Download | Santali | Download |
Khasi | Download | Sindhi | Download |
Kannada | Download | Tamil | Download |
Kashmiri | Download | Telugu | Download |
Maithili | Download | Urdu | Download |
A multilingual language model trained on IndicCorp v2 and evaluated on IndicXTREME benchmark. The model has 278M parameters and is available in 23 Indic languages and English. The models are trained with various objectives and datasets. The list of models are as follows:
- IndicBERT-MLM [Model] - A vanilla BERT style model trained on IndicCorp v2 with the MLM objective
- IndicBERT-SS [Model] - To encourage better lexical sharing among languages we convert the scripts from Indic languages to Devanagari and train a BERT style model with the MLM objective
The current BERT Preprocessig code needs to run in Tensorflow v2. Create a new conda environment and set it up as follows:
conda create -n tpu_data_prep python=3.7
pip install tokenizers transformers tqdm joblib indic-nlp-library
conda install tensorflow==2.3.0
Train a WordPiece Tokenizer to preprocess the data. The following command trains a tokenizer and saves it in the specified path.
Arguments:
- INPUT: /path/to/input.txt
- OUTPUT: /path/to/output
- VOCAB_SIZE: size of the vocabulary
python IndicBERT/tokenization/build_tokenizer.py \
--input_file=$INPUT \
--output_dir=$OUTPUT \
--vocab_size=$VOCAB_SIZE
Run the following command after update the required paths in the script:
python IndicBERT/process_data/create_mlm_data.py \
--input_file=$INPUT \
--output_file=$OUTPUT \
--input_file_type=$DATA_TYPE \
--tokenizer=$TOKENIZER_PATH \
--max_seq_length=$MAX_SEQ_LEN \
--max_predictions_per_seq=$MAX_PRED \
--do_whole_word_mask=$WHOLE_WORD_MASK \
--masked_lm_prob=$MASK_PROB \
--random_seed=$SEED \
--dupe_factor=$DUPE_FACTOR \
- DATA_TYPE:
monolingual
orparallel
monolingual
: if the input file is a monolingual corpus- INPUT:/path/to/input.txt
- (one sentence per line, empty line between documents)
- can take multiple files as input, separated by comma
- INPUT:/path/to/input.txt
parallel
: if the input file is a parallel corpus- INPUT:/path/to/input
- (one sentence per line)
- the input directory should contain two files,
input.en
andinput.lang
- INPUT:/path/to/input
- OUTPUT:/path/to/output.tfrecord
- TOKENIZER_PATH: /path/to/tokenizer/config.json
- MAX_SEQ_LEN: maximum sequence length, generally 512
- MAX_PRED: maximum number of tokens to mask in a sequence
- WHOLE_WORD_MASK: whether to mask whole words or not
- MASK_PROB: probability of masking a token
- DUPE_FACTOR: number of times to duplicate the input data
The BERT Pretraining code is a modified version of Google BERT Repo, without NSP and customisation to support parallel data. The training code need to run on Tensorflow v1. Create a new conda environment and set it up as follows:
conda env create --name bert_pretraining
conda activate bert_pretraining
conda install -c conda-forge tensorflow==1.14
Run the following command for pretraining:
python IndicBERT/train/run_pretraining.py \
--input_file=$INPUTS \
--output_dir=$OUTPUTS \
--do_train=True \
--bert_config_file=$BERT_CONFIG \
--train_batch_size=$BS \
--max_seq_length=$MAX_SEQ_LEN \
--max_predictions_per_seq=$MAX_PRED \
--num_train_steps=$TRAIN_STEPS \
--num_warmup_steps=$WARMUP \
--learning_rate=$LR \
--save_checkpoints_steps=$SAVE_EVERY \
--use_tpu=True \
--tpu_name=$TPU_NAME \
--tpu_zone=$TPU_ZONE \
--num_tpu_cores=$TPU_CORES
Note that to run the pretraining on TPUs, the input data and output directory should be on Google Cloud Storage
Arguments:
- INPUTS: gs://path/to/input/tfrecords/*
- OUTPUTS: gs://path/to/output
- BERT_CONFIG: /path/to/bert_config.json
- BS: batch size, usually
4096
- MAX_SEQ_LEN:
should be same as the preprocessing step
- MAX_PRED:
should be same as the preprocessing step
- TRAIN_STEPS: number of training steps, usually
1000000
- WARMUP: number of warmup steps, usually
10000
- LR: learning rate, usually
5e-4
- SAVE_EVERY: save checkpoints every
n
steps - TPU_NAME: name of the TPU
- TPU_ZONE: zone of the TPU
- TPU_CORES: number of TPU cores
Fine-tuning scripts are based on transformers library. Create a new conda environment and set it up as follows:
conda create -n finetuning python=3.9
pip install -r requirements.txt
All the tasks follow the same structure, please check individual files for detailed hyper-parameter choices. The following command runs the fine-tuning for a task:
python IndicBERT/fine-tuning/$TASK_NAME/$TASK_NAME.py \
--model_name_or_path=$MODEL_NAME \
--do_train
Arguments:
- MODEL_NAME: name of the model to fine-tune, can be a local path or a model from the HuggingFace Model Hub
- TASK_NAME: one of [
ner, paraphrase, qa, sentiment, xcopa, xnli, flores
]
For MASSIVE task, please use the instrction provided in the official repository
All the datasets created as part of this work will be released under a CC-0 license and all models & code will be release under an MIT license
@inproceedings{doddapaneni-etal-2023-towards,
title = "Towards Leaving No {I}ndic Language Behind: Building Monolingual Corpora, Benchmark and Models for {I}ndic Languages",
author = "Doddapaneni, Sumanth and
Aralikatte, Rahul and
Ramesh, Gowtham and
Goyal, Shreya and
Khapra, Mitesh M. and
Kunchukuttan, Anoop and
Kumar, Pratyush",
editor = "Rogers, Anna and
Boyd-Graber, Jordan and
Okazaki, Naoaki",
booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
month = jul,
year = "2023",
address = "Toronto, Canada",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2023.acl-long.693",
doi = "10.18653/v1/2023.acl-long.693",
pages = "12402--12426",
abstract = "Building Natural Language Understanding (NLU) capabilities for Indic languages, which have a collective speaker base of more than one billion speakers is absolutely crucial. In this work, we aim to improve the NLU capabilities of Indic languages by making contributions along 3 important axes (i) monolingual corpora (ii) NLU testsets (iii) multilingual LLMs focusing on Indic languages. Specifically, we curate the largest monolingual corpora, IndicCorp, with 20.9B tokens covering 24 languages from 4 language families - a 2.3x increase over prior work, while supporting 12 additional languages. Next, we create a human-supervised benchmark, IndicXTREME, consisting of nine diverse NLU tasks covering 20 languages. Across languages and tasks, IndicXTREME contains a total of 105 evaluation sets, of which 52 are new contributions to the literature. To the best of our knowledge, this is the first effort towards creating a standard benchmark for Indic languages that aims to test the multilingual zero-shot capabilities of pretrained language models. Finally, we train IndicBERT v2, a state-of-the-art model supporting all the languages. Averaged across languages and tasks, the model achieves an absolute improvement of 2 points over a strong baseline. The data and models are available at \url{https://github.com/AI4Bharat/IndicBERT}.",
}