Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

DeepXR
/
Helion-V2.5-Rnd

Text Generation
Transformers
Safetensors
llama
research
code
mathematics
reasoning
multilingual
long-context
custom_code
text-generation-inference
Model card Files Files and versions
xet
Community
7

Instructions to use DeepXR/Helion-V2.5-Rnd with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use DeepXR/Helion-V2.5-Rnd with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="DeepXR/Helion-V2.5-Rnd", trust_remote_code=True)
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("DeepXR/Helion-V2.5-Rnd", trust_remote_code=True)
    model = AutoModelForCausalLM.from_pretrained("DeepXR/Helion-V2.5-Rnd", trust_remote_code=True)
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • vLLM

    How to use DeepXR/Helion-V2.5-Rnd with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "DeepXR/Helion-V2.5-Rnd"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "DeepXR/Helion-V2.5-Rnd",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    Use Docker
    docker model run hf.co/DeepXR/Helion-V2.5-Rnd
  • SGLang

    How to use DeepXR/Helion-V2.5-Rnd 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 "DeepXR/Helion-V2.5-Rnd" \
        --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": "DeepXR/Helion-V2.5-Rnd",
    		"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 "DeepXR/Helion-V2.5-Rnd" \
            --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": "DeepXR/Helion-V2.5-Rnd",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Docker Model Runner

    How to use DeepXR/Helion-V2.5-Rnd with Docker Model Runner:

    docker model run hf.co/DeepXR/Helion-V2.5-Rnd
Helion-V2.5-Rnd
212 kB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 32 commits
Alex Gall
Update config.json
f56f87f verified 5 months ago
  • inference
    Create inference/data_loader.py 5 months ago
  • .gitattributes
    1.52 kB
    initial commit 5 months ago
  • Dockerfile
    3.83 kB
    Create Dockerfile 5 months ago
  • LICENSE
    10.7 kB
    Create LICENSE 5 months ago
  • README.md
    14.3 kB
    Update README.md 5 months ago
  • SECURITY.md
    10.9 kB
    Create SECURITY.md 5 months ago
  • api_specification.json
    14.8 kB
    Create api_specification.json 5 months ago
  • config.json
    1.56 kB
    Update config.json 5 months ago
  • docker-compose.yml
    3.44 kB
    Create docker-compose.yml 5 months ago
  • generation_config.json
    2.41 kB
    Create generation_config.json 5 months ago
  • metadata.json
    7.23 kB
    Create metadata.json 5 months ago
  • model.safetensors.index.json
    3.98 kB
    Update model.safetensors.index.json 5 months ago
  • model_config.yaml
    4.84 kB
    Create model_config.yaml 5 months ago
  • monitoring_config.json
    4.38 kB
    Create monitoring_config.json 5 months ago
  • requirements.txt
    925 Bytes
    Create requirements.txt 5 months ago
  • training_config.json
    2.99 kB
    Update training_config.json 5 months ago