Instructions to use pborchert/bert-ic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pborchert/bert-ic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="pborchert/bert-ic")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("pborchert/bert-ic") model = AutoModelForMaskedLM.from_pretrained("pborchert/bert-ic") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,4 +9,5 @@ tags:
|
|
| 9 |
library_name: transformers
|
| 10 |
widget:
|
| 11 |
- text: "Sanofi is in the [MASK] industry."
|
|
|
|
| 12 |
---
|
|
|
|
| 9 |
library_name: transformers
|
| 10 |
widget:
|
| 11 |
- text: "Sanofi is in the [MASK] industry."
|
| 12 |
+
- text: "The current ratio measures [MASK]."
|
| 13 |
---
|