CoolFace
Modelpublic

Chuxia-sys/phil-travel-gemma-2b-v2

sourceHugging Facegemmaupdated 10mo agoView on Hugging Face
0likes5downloads
Model Card

Gemma-2B Fine-tuned for Philippine Travel Planning

This model is a fine-tuned version of `google/gemma-2-2b-it` on a custom dataset of Philippine travel itineraries, beach recommendations, and budget planning prompts.

Use Case

  • —Generate day-by-day travel plans in the Philippines
  • —Recommend beaches, attractions, and local food
  • —Provide budget estimates (in PHP)
  • —Support for cities like Manila, Baguio, Palawan, Boracay, etc.

How to Use

python
from transformers import pipeline

pipe = pipeline("text-generation", model="your-username/phil-travel-gemma-2b", device="cpu")
prompt = "<start_of_turn>user\nSuggest a 3-day budget trip to Bohol under 5000 pesos.<end_of_turn>\n<start_of_turn>model\n"
response = pipe(prompt, max_new_tokens=500)
print(response[0]['generated_text'])