testupload / README.md
LucasFMartins's picture
Upload fine-tuned model from Gemma Garage (request: af4b4929-bb5e-4fa6-90ef-8af29eda89a5)
58c9b74 verified
metadata
language: en
license: apache-2.0
tags:
  - fine-tuned
  - gemma
  - lora
  - gemma-garage
base_model: google/gemma-3-1b-pt
pipeline_tag: text-generation

testupload

Fine-tuned google/gemma-3-1b-pt 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-pt
  • Fine-tuning Method: LoRA (Low-Rank Adaptation)
  • Training Platform: Gemma Garage
  • Fine-tuned on: 2025-07-24

Usage

from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("LucasFMartins/testupload")
model = AutoModelForCausalLM.from_pretrained("LucasFMartins/testupload")

# 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: af4b4929-bb5e-4fa6-90ef-8af29eda89a5
  • Training completed on: 2025-07-24 14:46:15 UTC

For more information about Gemma Garage, visit our GitHub repository.