YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Qwen3 1.7B
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:
- The tokenizer uses a compact vocabulary and special tokens typical for causal LMs.
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:
- Create a new repo on the Hugging Face Hub (private or public).
- Run
huggingface-cli login. - From this folder, run
git init,git remote add origin <your-hf-repo-url>,git add -A,git commit -m "init",git push -u origin main.
- Downloads last month
- 75
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support