Instructions to use jeduardogruiz/Mixtral_ether with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use jeduardogruiz/Mixtral_ether with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("fill-in-model-name") model.load_adapter("jeduardogruiz/Mixtral_ether", set_active=True) - Notebooks
- Google Colab
- Kaggle
Create Readme.md
Browse files
Readme.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import AutoModel
|
| 2 |
+
|
| 3 |
+
model = AutoModel.from_pretrained("google-bert/bert-base-cased")
|
| 4 |
+
|
| 5 |
+
# Push the model to your namespace with the name "my-finetuned-bert".
|
| 6 |
+
model.push_to_hub("my-finetuned-bert")
|
| 7 |
+
|
| 8 |
+
# Push the model to an organization with the name "my-finetuned-bert".
|
| 9 |
+
model.push_to_hub("huggingface/my-finetuned-bert")
|