Text Generation
Transformers
Safetensors
English
table-understanding
instruction-tuning
replication
tabular-data
conversational
Instructions to use dnaihao/qwen3-8b-tablegpt with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dnaihao/qwen3-8b-tablegpt with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="dnaihao/qwen3-8b-tablegpt") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("dnaihao/qwen3-8b-tablegpt", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use dnaihao/qwen3-8b-tablegpt with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dnaihao/qwen3-8b-tablegpt" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dnaihao/qwen3-8b-tablegpt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/dnaihao/qwen3-8b-tablegpt
- SGLang
How to use dnaihao/qwen3-8b-tablegpt with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "dnaihao/qwen3-8b-tablegpt" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dnaihao/qwen3-8b-tablegpt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "dnaihao/qwen3-8b-tablegpt" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dnaihao/qwen3-8b-tablegpt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use dnaihao/qwen3-8b-tablegpt with Docker Model Runner:
docker model run hf.co/dnaihao/qwen3-8b-tablegpt
- Xet hash:
- d1e52137e6c52f92fdaa621ce645cde3d4ba35d1c8c8717e3096c368bf3a4894
- Size of remote file:
- 214 Bytes
- SHA256:
- 787409d8b23543ca6a24affbca01de9251ec48e5b0f268911ca92daabde329bf
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.