Instructions to use aajrami/bert-sr-medium with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aajrami/bert-sr-medium with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="aajrami/bert-sr-medium")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("aajrami/bert-sr-medium") model = AutoModelForMultimodalLM.from_pretrained("aajrami/bert-sr-medium") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ tags:
|
|
| 4 |
license: cc-by-4.0
|
| 5 |
---
|
| 6 |
## bert-sr-medium
|
| 7 |
-
|
| 8 |
|
| 9 |
## License
|
| 10 |
CC BY 4.0
|
|
|
|
| 4 |
license: cc-by-4.0
|
| 5 |
---
|
| 6 |
## bert-sr-medium
|
| 7 |
+
A medium-size BERT Language Model with a **shuffle + random** pre-training objective. For more details about the pre-training objective and the pre-training hyperparameters, please refer to [How does the pre-training objective affect what large language models learn about linguistic properties?](https://aclanthology.org/2022.acl-short.16/)
|
| 8 |
|
| 9 |
## License
|
| 10 |
CC BY 4.0
|