--- library_name: optimum tags: - onnx - text-generation - qwen3 base_model: - Qwen/Qwen3-0.6B-Base --- # Qwen3-0.6B-Base — ONNX This repository contains an ONNX Runtime export generated with Optimum from `Qwen/Qwen3-0.6B-Base`. ## Load with Optimum ```python from optimum.onnxruntime import ORTModelForCausalLM from transformers import AutoTokenizer model_id = "Sharjeelbaig/Qwen3-0.6B-Base-ONNX" tokenizer = AutoTokenizer.from_pretrained(model_id) model = ORTModelForCausalLM.from_pretrained(model_id) ``` The model was exported with the `text-generation-with-past` task and validated by ONNX Runtime on CPU.