Instructions to use microsoft/SportsBERT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/SportsBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="microsoft/SportsBERT")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("microsoft/SportsBERT") model = AutoModelForMaskedLM.from_pretrained("microsoft/SportsBERT") - Notebooks
- Google Colab
- Kaggle
Update README.md
#1
by SaMMicrosoft - opened
README.md
CHANGED
|
@@ -9,4 +9,4 @@ This model can then be used to fine tune for other tasks such as classification,
|
|
| 9 |
Language: English
|
| 10 |
pipeline_tag: fill-mask
|
| 11 |
|
| 12 |
-
Authors: Prithvishankar Srinivasan (prsrini@microsoft.com)
|
|
|
|
| 9 |
Language: English
|
| 10 |
pipeline_tag: fill-mask
|
| 11 |
|
| 12 |
+
Authors: Prithvishankar Srinivasan (prsrini@microsoft.com), Santosh Mashetty (samashet@microsoft.com)
|