This repository follows the structure of a Qwen3-style causal language model on Hugging Face. It includes model configuration, tokenizer assets, generation configuration, and weight artifacts.
Contents:
config.json — model configuration (Qwen3 fields)generation_config.json — text generation defaultstokenizer.json — tokenizer (fast) with special tokenstokenizer_config.json — tokenizer settingsspecial_tokens_map.json — mapping for special tokensvocab.json, merges.txt — BPE assetsmodel.safetensors — weights (safetensors, single file)Notes:
Example usage:
from transformers import AutoTokenizer, AutoModelForCausalLM
tok = AutoTokenizer.from_pretrained("<your-namespace>/<your-model-id>")
model = AutoModelForCausalLM.from_pretrained("<your-namespace>/<your-model-id>")
How to publish to the Hub:
huggingface-cli login.git init, git remote add origin <your-hf-repo-url>, git add -A, git commit -m "init", git push -u origin main.