Transformers How to use pcuenq/tiny-gemma with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="pcuenq/tiny-gemma") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("pcuenq/tiny-gemma")
model = AutoModel.from_pretrained("pcuenq/tiny-gemma")