emre's picture
Update README.md
3e5f340
|
raw
history blame
No virus
722 Bytes
---
language:
- java
- code
license: apache-2.0
datasets:
- code_search_net
widget:
- text: 'public [MASK] isOdd(Integer num){if (num % 2 == 0) {return "even";} else {return "odd";}}'
---
## JavaRoBERTa-Tara (Name of my baby girl :) )
A RoBERTa model pretrained on, code_search_net Java software code.
### Training Data
The model was trained on 10,223,695 Java files retrieved from open source projects on GitHub.
### Training Objective
A MLM (Masked Language Model) objective was used to train this model.
### Usage
```python
from transformers import pipeline
pipe = pipeline('fill-mask', model='CAUKiel/JavaBERT')
output = pipe(CODE) # Replace with Java code; Use '[MASK]' to mask tokens/words in the code.
```