Instructions to use gizmo-ai/gemma-4-12B-it with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gizmo-ai/gemma-4-12B-it with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("gizmo-ai/gemma-4-12B-it") model = AutoModelForMultimodalLM.from_pretrained("gizmo-ai/gemma-4-12B-it") - Notebooks
- Google Colab
- Kaggle
Create requirements.txt
Browse files- requirements.txt +4 -0
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
transformers>=4.51.0
|
| 2 |
+
accelerate
|
| 3 |
+
torch
|
| 4 |
+
sentencepiece
|