Overfitted Micro-LLM Chatbot

This is a Qwen-2.5-0.5B-Instruct model overfitted on small-talk dataset.

Chat Widget Configuration

This model is formatted with appropriate metadata to display the Interactive Chat Widget on the Hugging Face model page.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

device = "mps" if torch.backends.mps.is_available() else "cuda" if torch.cuda.is_available() else "cpu"
model_name = "overfitted-model"

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name).to(device)
Downloads last month
7
Safetensors
Model size
0.5B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support