Instructions to use icelab/cosmicroberta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use icelab/cosmicroberta with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="icelab/cosmicroberta")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("icelab/cosmicroberta") model = AutoModelForMaskedLM.from_pretrained("icelab/cosmicroberta") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
| 1 |
---
|
| 2 |
license: mpl-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
### CosmicRoBERTa
|
| 5 |
|
| 6 |
This model is a further pre-trained version of RoBERTa on a domain-specific corpus, including abstracts from the NTRS library, abstracts from SCOPUS etc...
|
|
|
|
| 1 |
---
|
| 2 |
license: mpl-2.0
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
---
|
| 6 |
+
widget:
|
| 7 |
+
- text: "The closest planet to earth is <mask>. "
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
### CosmicRoBERTa
|
| 11 |
|
| 12 |
This model is a further pre-trained version of RoBERTa on a domain-specific corpus, including abstracts from the NTRS library, abstracts from SCOPUS etc...
|