Fill-Mask
Transformers
PyTorch
TensorFlow
JAX
Safetensors
Javanese
roberta
javanese-roberta-small-imdb
Instructions to use w11wo/javanese-roberta-small-imdb with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use w11wo/javanese-roberta-small-imdb with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="w11wo/javanese-roberta-small-imdb")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("w11wo/javanese-roberta-small-imdb") model = AutoModelForMaskedLM.from_pretrained("w11wo/javanese-roberta-small-imdb", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: jv
|
| 3 |
+
tags:
|
| 4 |
+
- javanese-roberta-small-imdb
|
| 5 |
+
license: mit
|
| 6 |
+
datasets:
|
| 7 |
+
- w11wo/imdb-javanese
|
| 8 |
+
widget:
|
| 9 |
+
- text: "Aku bakal menehi rating film iki 5 <mask>."
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
## Javanese RoBERTa Small IMDB
|
| 13 |
+
Javanese RoBERTa Small IMDB is a masked language model based on the [RoBERTa model](https://arxiv.org/abs/1907.11692). It was trained on Javanese IMDB movie reviews.
|
| 14 |
+
|
| 15 |
+
The model was originally the pretrained [Javanese RoBERTa Small model](https://huggingface.co/w11wo/javanese-roberta-small) and is later fine-tuned on the Javanese IMDB movie review dataset. It achieved a perplexity of 20.83 on the validation dataset. Many of the techniques used are based on a Hugging Face tutorial [notebook](https://github.com/huggingface/notebooks/blob/master/examples/language_modeling.ipynb) written by [Sylvain Gugger](https://github.com/sgugger).
|
| 16 |
+
|
| 17 |
+
Hugging Face's `Trainer` class from the [Transformers]((https://huggingface.co/transformers)) library was used to train the model. PyTorch was used as the backend framework during training, but the model remains compatible with TensorFlow nonetheless.
|
| 18 |
+
|
| 19 |
+
## Model
|
| 20 |
+
| Model | #params | Arch. | Training/Validation data (text) |
|
| 21 |
+
|-------------------------------|----------|-------------------|---------------------------------|
|
| 22 |
+
| `javanese-roberta-small-imdb` | 124M | RoBERTa Small | Javanese IMDB (47.5 MB of text) |
|
| 23 |
+
|
| 24 |
+
## Evaluation Results
|
| 25 |
+
The model was trained for 5 epochs and the following is the final result once the training ended.
|
| 26 |
+
|
| 27 |
+
| train loss | valid loss | perplexity | total time |
|
| 28 |
+
|------------|------------|------------|-------------|
|
| 29 |
+
| 3.140 | 3.036 | 20.83 | 2:59:28 |
|
| 30 |
+
|
| 31 |
+
## How to Use
|
| 32 |
+
### As Masked Language Model
|
| 33 |
+
```python
|
| 34 |
+
from transformers import pipeline
|
| 35 |
+
|
| 36 |
+
pretrained_name = "w11wo/javanese-roberta-small-imdb"
|
| 37 |
+
|
| 38 |
+
fill_mask = pipeline(
|
| 39 |
+
"fill-mask",
|
| 40 |
+
model=pretrained_name,
|
| 41 |
+
tokenizer=pretrained_name
|
| 42 |
+
)
|
| 43 |
+
|
| 44 |
+
fill_mask("Aku mangan sate ing <mask> bareng konco-konco")
|
| 45 |
+
```
|
| 46 |
+
### Feature Extraction in PyTorch
|
| 47 |
+
```python
|
| 48 |
+
from transformers import RobertaModel, RobertaTokenizerFast
|
| 49 |
+
|
| 50 |
+
pretrained_name = "w11wo/javanese-roberta-small-imdb"
|
| 51 |
+
model = RobertaModel.from_pretrained(pretrained_name)
|
| 52 |
+
tokenizer = RobertaTokenizerFast.from_pretrained(pretrained_name)
|
| 53 |
+
|
| 54 |
+
prompt = "Indonesia minangka negara gedhe."
|
| 55 |
+
encoded_input = tokenizer(prompt, return_tensors='pt')
|
| 56 |
+
output = model(**encoded_input)
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Disclaimer
|
| 60 |
+
Do consider the biases which came from the IMDB review that may be carried over into the results of this model.
|
| 61 |
+
|
| 62 |
+
## Author
|
| 63 |
+
Javanese RoBERTa Small was trained and evaluated by [Wilson Wongso](https://w11wo.github.io/). All computation and development are done on Google Colaboratory using their free GPU access.
|