Update README.md
Browse files
README.md
CHANGED
|
@@ -1 +1,8 @@
|
|
| 1 |
-
# MSRoBERTa
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# MSRoBERTa
|
| 2 |
+
## Roberta Masked Language model fine-tuned for the Microsoft Sentence Completion Challenge.
|
| 3 |
+
|
| 4 |
+
## How to use:
|
| 5 |
+
You can use this model directly with a pipeline for masked language modelling:
|
| 6 |
+
>>> from transformers import pipeline
|
| 7 |
+
>>> unmasker = pipeline('fill-mask', model='MSRoberta')
|
| 8 |
+
>>> unmasker("Hello I'm a <mask> model.")
|