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
remove
Browse files- run_mlm_flax_stream.py +2 -2
run_mlm_flax_stream.py
CHANGED
|
@@ -507,8 +507,8 @@ if __name__ == "__main__":
|
|
| 507 |
# Enable Weight&Biases
|
| 508 |
import wandb
|
| 509 |
wandb.init(
|
| 510 |
-
entity='
|
| 511 |
-
project='
|
| 512 |
sync_tensorboard=True,
|
| 513 |
)
|
| 514 |
wandb.config.update(training_args)
|
|
|
|
| 507 |
# Enable Weight&Biases
|
| 508 |
import wandb
|
| 509 |
wandb.init(
|
| 510 |
+
entity='munggok',
|
| 511 |
+
project='roberta-indo-basexs',
|
| 512 |
sync_tensorboard=True,
|
| 513 |
)
|
| 514 |
wandb.config.update(training_args)
|