gemma-3-1b-it-fine-tuned-demo-6
Fine-tuned google/gemma-3-1b-it model from Gemma Garage
This model was fine-tuned using Gemma Garage, a platform for fine-tuning Gemma models with LoRA.
Model Details
- Base Model: google/gemma-3-1b-it
- Fine-tuning Method: LoRA (Low-Rank Adaptation)
- Training Platform: Gemma Garage
- Fine-tuned on: 2025-08-21
Usage
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("LucasFMartins/gemma-3-1b-it-fine-tuned-demo-6")
model = AutoModelForCausalLM.from_pretrained("LucasFMartins/gemma-3-1b-it-fine-tuned-demo-6")
# Generate text
inputs = tokenizer("Your prompt here", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
Training Details
This model was fine-tuned using the Gemma Garage platform with the following configuration:
- Request ID: 7b1d83ec-63e7-4cdd-a2a0-a4bd89748859
- Training completed on: 2025-08-21 01:47:58 UTC
For more information about Gemma Garage, visit our GitHub repository.