Views
No views yet
1pip install transformers torch # For transformers models
2# OR
3pip install -r requirements.txt # For other frameworks1# Load and use the model
2from inference import Model # See inference.py in the repository
3
4model = Model()
5predictions = model.predict(["Your input data here"])
6print(predictions)N/A1@misc{ner_distillbert_1,
2 title={ner_distillbert},
3 author={BITZ-AI TEAM},
4 year={2025},
5 publisher={Hugging Face},
6 url={https://huggingface.co/marlonbino/ner_distillbert}
7}