Views
No views yet
fitnesschatbot-v1 là mô hình chatbot tiếng Việt phục vụ tư vấn fitness, được fine-tune từ base model google/gemma-4-E4B-it. Mô hình hướng tới các tác vụ như hỏi đáp về luyện tập, gợi ý lịch tập, hỗ trợ định hướng dinh dưỡng cơ bản và tư vấn fitness tổng quát bằng tiếng Việt.google/gemma-4-E4B-it1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model_id = "HuyTuiTen/fitnesschatbot-v1"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto"
11)