๐Ÿค– Mini-GPT โ€” Multi-Task Assistant

Trained from scratch on 89,971 steps over 1.5 hours.

๐Ÿ“Š Training Mix

Task Dataset %
๐Ÿ’ฌ Chat + General OpenAssistant + UltraChat + Alpaca 50%
๐Ÿ’ป Coding CodeAlpaca + Python Instructions 30%
๐Ÿค– Agentic Anthropic HH-RLHF 10%
๐Ÿงฎ Reasoning + Self GSM8K + Self-Generated 10%

๐Ÿง  Model Info

Parameters 3,808,939
Layers 6
Embed dim 256
Heads 8
Block size 128
Vocab size 1195
Final loss 0.8225

๐Ÿš€ How to Load

import torch
from huggingface_hub import hf_hub_download
import json

ckpt_path  = hf_hub_download("usernamebetter/idk-prev-2", "minigpt_checkpoint.pth")
vocab_path = hf_hub_download("usernamebetter/idk-prev-2", "vocab.json")

with open(vocab_path) as f:
    vocab = json.load(f)
stoi = vocab["stoi"]
itos = {int(k): v for k, v in vocab["itos"].items()}

ckpt = torch.load(ckpt_path, map_location="cpu")
model.load_state_dict(ckpt["model"])
model.eval()
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support