Instructions to use acul3/roberta-base-indo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use acul3/roberta-base-indo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="acul3/roberta-base-indo")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("acul3/roberta-base-indo") model = AutoModelForMaskedLM.from_pretrained("acul3/roberta-base-indo", device_map="auto") - Notebooks
- Google Colab
- Kaggle
change warmup steps
Browse files- requirements.txt +5 -1
requirements.txt
CHANGED
|
@@ -1,2 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
transformers
|
| 2 |
-
datasets
|
|
|
|
|
|
| 1 |
+
flax
|
| 2 |
+
torch
|
| 3 |
+
tensorflow
|
| 4 |
transformers
|
| 5 |
+
datasets
|
| 6 |
+
wandb
|