A Transformer-based Detector-Purificator-Corrector Framework for Spelling Error Correction of Bangla and Resource Scarce Indic Languages
Operating System | Requirement | Remark |
---|---|---|
Ubuntu 16.04.7 LTS | requirements_ubuntu.txt | ✔️ Successful |
Ubuntu 18.04.6 LTS (Google Colab) | requirements_colab.txt | - |
Windows 10 | requirements_windows.txt | - |
git clone https://github.com/mehedihasanbijoy/DPCSpell.git
or manually download and extract the github repository of DPCSpell.
conda env create -f environment.yml (for Ubuntu 16.04.7 LTS)
or
conda env create -f environment.yml (for Ubuntu 18.04.6 LTS)
or
conda env create -f environment.yml (for Windows 10)
conda activate DPCSpell
gdown https://drive.google.com/drive/folders/1vfCAqqXy0ZTL8cPKR-K5q5coBnNv2Zxf?usp=sharing -O ./Dataset --folder
or manually download the folder from here and keep the extracted files into ./Dataset/
python detector.py --CORPUS "./Dataset/corpus.csv" --HID_DIM 128 --ENC_LAYERS 5 --DEC_LAYERS 5 --ENC_HEADS 8 --DEC_HEADS 8 --ENC_PF_DIM 256 --DEC_PF_DIM 256 --ENC_DROPOUT 0.1 --DEC_DROPOUT 0.1 --CLIP 1 --LEARNING_RATE 0.0005 --N_EPOCHS 100
python purificator.py --HID_DIM 128 --ENC_LAYERS 5 --DEC_LAYERS 5 --ENC_HEADS 8 --DEC_HEADS 8 --ENC_PF_DIM 256 --DEC_PF_DIM 256 --ENC_DROPOUT 0.1 --DEC_DROPOUT 0.1 --CLIP 1 --LEARNING_RATE 0.0005 --N_EPOCHS 100
python corrector.py --HID_DIM 128 --ENC_LAYERS 5 --DEC_LAYERS 5 --ENC_HEADS 8 --DEC_HEADS 8 --ENC_PF_DIM 256 --DEC_PF_DIM 256 --ENC_DROPOUT 0.1 --DEC_DROPOUT 0.1 --CLIP 1 --LEARNING_RATE 0.0005 --N_EPOCHS 100