German Named Entity Recognition model for the
MobAnon document anonymization app. Fine-tuned from
deepset/gelectra-large on
GermEval14 for on-device inference.
MobAnon supplements these with regex-based detection for structured entities (email, phone, IBAN, identifiers).
This model is downloaded automatically by the MobAnon app on first use. No manual setup required.
1# Via huggingface-cli
2huggingface-cli download PaulCamacho/mobanon-models deepseek.tflite
3
4# Via URL
5wget https://huggingface.co/PaulCamacho/mobanon-models/resolve/main/deepseek.tflite
1cd base_model
2python train_ner.py --epochs 3 --batch-size 16 --fp16
3python export_to_onnx.py --static-shapes
4python convert_to_tflite.py --quantize float16
See the
base_model README for the full training and conversion pipeline.