LFF POS Tagging is a PyTorch implementation of a BiLSTM-CRF sequence labeler that fuses morphological, orthographic, and character-level features—designed to boost tagging accuracy for rare and out-of-vocabulary words in Indonesian corpora.
0
stars
2
commits
Python
primary language
Jun 28, 2025
updated
LFF POS Tagging is a PyTorch implementation of a BiLSTM-CRF sequence labeler that fuses morphological, orthographic, and character-level features—designed to boost tagging accuracy for rare and out-of-vocabulary words in Indonesian corpora.
LFF POS Tagging is a PyTorch-based implementation of a BiLSTM-CRF model with Linguistic Feature Fusion. It fuses multiple linguistic feature sets—morphological, orthographic, and character-level—to improve tagging accuracy, especially for rare and out-of-vocabulary words.
git clone https://github.com/your-username/LFF-POS-Tagging.git
cd LFF-POS-Tagging
python -m venv venv
source venv/bin/activate # Linux/macOS
venv\Scripts\activate
pip install -r requirements.txt
python scripts/preprocess.py --input raw_corpus.txt --output data/
python train.py \
--train data/train.json \
--dev data/dev.json \
--config configs/lff_config.yaml
python evaluate.py --model checkpoints/best.pt --test data/test.json
python predict.py --model checkpoints/best.pt --input "Saya suka NLP."
After training, evaluation metrics will be logged to logs/ and a summary printed:
git checkout -b feature/YourFeature)git commit -m "Add YourFeature")git push origin feature/YourFeature)This project is released under the MIT License. See LICENSE for details.
2 commits
Python
59.8%
Perl
29.4%
Java
5.9%
C
4.5%
LFF POS Tagging is a PyTorch implementation of a BiLSTM-CRF sequence labeler that fuses morphological, orthographic, and character-level features—designed to boost tagging accuracy for rare and out-of-vocabulary words in Indonesian corpora.
0
stars
2
commits
Python
primary language
Jun 28, 2025
updated
LFF POS Tagging is a PyTorch implementation of a BiLSTM-CRF sequence labeler that fuses morphological, orthographic, and character-level features—designed to boost tagging accuracy for rare and out-of-vocabulary words in Indonesian corpora.
LFF POS Tagging is a PyTorch-based implementation of a BiLSTM-CRF model with Linguistic Feature Fusion. It fuses multiple linguistic feature sets—morphological, orthographic, and character-level—to improve tagging accuracy, especially for rare and out-of-vocabulary words.
git clone https://github.com/your-username/LFF-POS-Tagging.git
cd LFF-POS-Tagging
python -m venv venv
source venv/bin/activate # Linux/macOS
venv\Scripts\activate
pip install -r requirements.txt
python scripts/preprocess.py --input raw_corpus.txt --output data/
python train.py \
--train data/train.json \
--dev data/dev.json \
--config configs/lff_config.yaml
python evaluate.py --model checkpoints/best.pt --test data/test.json
python predict.py --model checkpoints/best.pt --input "Saya suka NLP."
After training, evaluation metrics will be logged to logs/ and a summary printed:
git checkout -b feature/YourFeature)git commit -m "Add YourFeature")git push origin feature/YourFeature)This project is released under the MIT License. See LICENSE for details.
2 commits
Python
59.8%
Perl
29.4%
Java
5.9%
C
4.5%