Chuxia-sys's picture
Create README.md
15f2f64 verified
|
Raw
History Blame Contribute Delete
977 Bytes
---
language: en
license: gemma
tags:
- gemma
- travel
- philippines
- fine-tuned
- lora
- tourism
pipeline_tag: text-generation
---
# Gemma-2B Fine-tuned for Philippine Travel Planning
This model is a fine-tuned version of [`google/gemma-2-2b-it`](https://huggingface.co/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'])