Update README.md
Browse files
README.md
CHANGED
@@ -20,6 +20,6 @@ A MLM (Masked Language Model) objective was used to train this model.
|
|
20 |
### Usage
|
21 |
```python
|
22 |
from transformers import pipeline
|
23 |
-
pipe = pipeline('fill-mask', model='
|
24 |
output = pipe(CODE) # Replace with Java code; Use '[MASK]' to mask tokens/words in the code.
|
25 |
```
|
|
|
20 |
### Usage
|
21 |
```python
|
22 |
from transformers import pipeline
|
23 |
+
pipe = pipeline('fill-mask', model='emre/java-RoBERTa-Tara-small')
|
24 |
output = pipe(CODE) # Replace with Java code; Use '[MASK]' to mask tokens/words in the code.
|
25 |
```
|