Instructions to use dbernsohn/roberta-python with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dbernsohn/roberta-python with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="dbernsohn/roberta-python")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("dbernsohn/roberta-python") model = AutoModelForMaskedLM.from_pretrained("dbernsohn/roberta-python") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
---
|
| 3 |
language: python
|
| 4 |
datasets:
|
| 5 |
-
-
|
| 6 |
---
|
| 7 |
|
| 8 |
This is a [roberta](https://arxiv.org/pdf/1907.11692.pdf) pre-trained version on the [CodeSearchNet dataset](https://github.com/github/CodeSearchNet) for **Python** Mask Language Model mission.
|
|
|
|
| 2 |
---
|
| 3 |
language: python
|
| 4 |
datasets:
|
| 5 |
+
- code_search_net
|
| 6 |
---
|
| 7 |
|
| 8 |
This is a [roberta](https://arxiv.org/pdf/1907.11692.pdf) pre-trained version on the [CodeSearchNet dataset](https://github.com/github/CodeSearchNet) for **Python** Mask Language Model mission.
|