Instructions to use CS221DoAn/Do_an_group_mBERT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CS221DoAn/Do_an_group_mBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="CS221DoAn/Do_an_group_mBERT")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("CS221DoAn/Do_an_group_mBERT") model = AutoModelForTokenClassification.from_pretrained("CS221DoAn/Do_an_group_mBERT", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -175,7 +175,7 @@ If you use this model in your academic research or projects, please cite our pro
|
|
| 175 |
title = {Food Order Extraction: Multilingual BERT Baseline for Vietnamese NER},
|
| 176 |
year = {2026},
|
| 177 |
publisher = {Hugging Face},
|
| 178 |
-
howpublished =
|
| 179 |
}
|
| 180 |
|
| 181 |
@inproceedings{bert,
|
|
|
|
| 175 |
title = {Food Order Extraction: Multilingual BERT Baseline for Vietnamese NER},
|
| 176 |
year = {2026},
|
| 177 |
publisher = {Hugging Face},
|
| 178 |
+
howpublished = https://huggingface.co/CS221DoAn/Do_an_group_mBERT
|
| 179 |
}
|
| 180 |
|
| 181 |
@inproceedings{bert,
|