Instructions to use vinai/phobert-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vinai/phobert-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="vinai/phobert-large")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("vinai/phobert-large") model = AutoModelForMaskedLM.from_pretrained("vinai/phobert-large") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
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):
|
|
@@ -16,5 +21,4 @@ The general architecture and experimental results of PhoBERT can be found in our
|
|
| 16 |
|
| 17 |
**Please CITE** our paper when PhoBERT is used to help produce published results or is incorporated into other software.
|
| 18 |
|
| 19 |
-
For further information or requests, please go to [PhoBERT's homepage](https://github.com/VinAIResearch/PhoBERT)!
|
| 20 |
-
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- vi
|
| 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):
|
|
|
|
| 21 |
|
| 22 |
**Please CITE** our paper when PhoBERT is used to help produce published results or is incorporated into other software.
|
| 23 |
|
| 24 |
+
For further information or requests, please go to [PhoBERT's homepage](https://github.com/VinAIResearch/PhoBERT)!
|
|
|