Instructions to use l3cube-pune/marathi-ner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use l3cube-pune/marathi-ner with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="l3cube-pune/marathi-ner")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("l3cube-pune/marathi-ner") model = AutoModelForTokenClassification.from_pretrained("l3cube-pune/marathi-ner") - Notebooks
- Google Colab
- Kaggle
Train further for specific domain
#3
by rohitcmohite - opened
Hello,
would it be possible to train this model further to identify entities from a specific domain?
Yes, the model can be further trained on specific domains using standard HF token classification model training scripts.