Instructions to use Firdania/sindesa-indobert-ner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Firdania/sindesa-indobert-ner with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Firdania/sindesa-indobert-ner")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Firdania/sindesa-indobert-ner") model = AutoModelForTokenClassification.from_pretrained("Firdania/sindesa-indobert-ner", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 131 Bytes
50e70f2 | 1 2 3 4 5 6 7 8 9 10 11 | [
"O",
"B-DOKUMEN",
"I-DOKUMEN",
"B-INSTANSI",
"I-INSTANSI",
"B-LAYANAN",
"I-LAYANAN",
"B-WILAYAH",
"I-WILAYAH"
] |