Text Generation
Transformers
Safetensors
English
qwen3
marin
delphi
scaling-laws
pretrained
research-only
text-generation-inference
Instructions to use marin-community/delphi-2e19-210Mparams-18.2Btokens with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use marin-community/delphi-2e19-210Mparams-18.2Btokens with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="marin-community/delphi-2e19-210Mparams-18.2Btokens")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("marin-community/delphi-2e19-210Mparams-18.2Btokens") model = AutoModelForCausalLM.from_pretrained("marin-community/delphi-2e19-210Mparams-18.2Btokens") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use marin-community/delphi-2e19-210Mparams-18.2Btokens with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "marin-community/delphi-2e19-210Mparams-18.2Btokens" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "marin-community/delphi-2e19-210Mparams-18.2Btokens", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/marin-community/delphi-2e19-210Mparams-18.2Btokens
- SGLang
How to use marin-community/delphi-2e19-210Mparams-18.2Btokens 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 "marin-community/delphi-2e19-210Mparams-18.2Btokens" \ --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": "marin-community/delphi-2e19-210Mparams-18.2Btokens", "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 "marin-community/delphi-2e19-210Mparams-18.2Btokens" \ --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": "marin-community/delphi-2e19-210Mparams-18.2Btokens", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use marin-community/delphi-2e19-210Mparams-18.2Btokens with Docker Model Runner:
docker model run hf.co/marin-community/delphi-2e19-210Mparams-18.2Btokens
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!