Instructions to use nkoh01/MSRoberta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nkoh01/MSRoberta with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="nkoh01/MSRoberta")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("nkoh01/MSRoberta") model = AutoModelForMaskedLM.from_pretrained("nkoh01/MSRoberta") - Notebooks
- Google Colab
- Kaggle
namhkoh commited on
Commit ·
2b53ea5
1
Parent(s): 923e2e4
Update README.md
Browse files
README.md
CHANGED
|
@@ -58,3 +58,6 @@ unmasker("Hello, it is a <mask> to meet you.")
|
|
| 58 |
|
| 59 |
## Installations
|
| 60 |
Make sure you run `!pip install transformers` command to install the transformers library before running the commands above.
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
|
| 59 |
## Installations
|
| 60 |
Make sure you run `!pip install transformers` command to install the transformers library before running the commands above.
|
| 61 |
+
|
| 62 |
+
## Bias and limitations
|
| 63 |
+
Under construction.
|