Instructions to use David003/llama_30b_hf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use David003/llama_30b_hf with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="David003/llama_30b_hf")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("David003/llama_30b_hf") model = AutoModelForCausalLM.from_pretrained("David003/llama_30b_hf") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use David003/llama_30b_hf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "David003/llama_30b_hf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "David003/llama_30b_hf", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/David003/llama_30b_hf
- SGLang
How to use David003/llama_30b_hf 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 "David003/llama_30b_hf" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "David003/llama_30b_hf", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "David003/llama_30b_hf" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "David003/llama_30b_hf", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use David003/llama_30b_hf with Docker Model Runner:
docker model run hf.co/David003/llama_30b_hf
- Xet hash:
- 9491bc7251a8e66165d55fd0d3ac8a756313f6ea66dcfdd93fdd2c3b3a5dd6f7
- Size of remote file:
- 9.87 GB
- SHA256:
- 174128542031f4ad7ceb6c799e8e5461ec1ca91a72a01402c567e5f6a8b33d8c
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.