Instructions to use vinai/phobert-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vinai/phobert-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="vinai/phobert-base")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("vinai/phobert-base") model = AutoModelForMaskedLM.from_pretrained("vinai/phobert-base") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
#2
by lbourdois - opened
README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# <a name="introduction"></a> PhoBERT: Pre-trained language models for Vietnamese
|
| 2 |
|
| 3 |
Pre-trained PhoBERT models are the state-of-the-art language models for Vietnamese ([Pho](https://en.wikipedia.org/wiki/Pho), i.e. "Phở", is a popular food in Vietnam):
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- vi
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
# <a name="introduction"></a> PhoBERT: Pre-trained language models for Vietnamese
|
| 7 |
|
| 8 |
Pre-trained PhoBERT models are the state-of-the-art language models for Vietnamese ([Pho](https://en.wikipedia.org/wiki/Pho), i.e. "Phở", is a popular food in Vietnam):
|