Text Generation
Transformers
PyTorch
English
multilingual
helion
deepxr
xlarge
instruction-tuned
causal-lm
conversational
custom_code
Eval Results (legacy)
bitsandbytes
Instructions to use DeepXR/Helion-V1.5-XL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DeepXR/Helion-V1.5-XL with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DeepXR/Helion-V1.5-XL", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("DeepXR/Helion-V1.5-XL", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use DeepXR/Helion-V1.5-XL with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DeepXR/Helion-V1.5-XL" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DeepXR/Helion-V1.5-XL", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DeepXR/Helion-V1.5-XL
- SGLang
How to use DeepXR/Helion-V1.5-XL 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-V1.5-XL" \ --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": "DeepXR/Helion-V1.5-XL", "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 "DeepXR/Helion-V1.5-XL" \ --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": "DeepXR/Helion-V1.5-XL", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use DeepXR/Helion-V1.5-XL with Docker Model Runner:
docker model run hf.co/DeepXR/Helion-V1.5-XL
Create pytorch_model.bin.index.json
Browse files- pytorch_model.bin.index.json +88 -0
pytorch_model.bin.index.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 32495665152,
|
| 4 |
+
"format": "pt"
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.embed_tokens.weight": "pytorch_model-00001-of-00008.bin",
|
| 8 |
+
"model.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 9 |
+
"model.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 10 |
+
"model.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 11 |
+
"model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 12 |
+
"model.layers.0.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
| 13 |
+
"model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 14 |
+
"model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 15 |
+
"model.layers.0.mlp.down_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 16 |
+
"model.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 17 |
+
"model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 18 |
+
"model.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 19 |
+
"model.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 20 |
+
"model.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 21 |
+
"model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 22 |
+
"model.layers.1.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
| 23 |
+
"model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 24 |
+
"model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 25 |
+
"model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 26 |
+
"model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 27 |
+
"model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 28 |
+
"model.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 29 |
+
"model.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 30 |
+
"model.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 31 |
+
"model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 32 |
+
"model.layers.2.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
| 33 |
+
"model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 34 |
+
"model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 35 |
+
"model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 36 |
+
"model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 37 |
+
"model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 38 |
+
"model.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 39 |
+
"model.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 40 |
+
"model.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 41 |
+
"model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 42 |
+
"model.layers.3.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
| 43 |
+
"model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 44 |
+
"model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 45 |
+
"model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 46 |
+
"model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 47 |
+
"model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 48 |
+
"model.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 49 |
+
"model.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 50 |
+
"model.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 51 |
+
"model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 52 |
+
"model.layers.4.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
| 53 |
+
"model.layers.4.mlp.gate_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 54 |
+
"model.layers.4.mlp.up_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 55 |
+
"model.layers.4.mlp.down_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 56 |
+
"model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 57 |
+
"model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
| 58 |
+
"model.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 59 |
+
"model.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 60 |
+
"model.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 61 |
+
"model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00008.bin",
|
| 62 |
+
"model.layers.5.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
| 63 |
+
"model.layers.5.mlp.gate_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 64 |
+
"model.layers.5.mlp.up_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 65 |
+
"model.layers.5.mlp.down_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 66 |
+
"model.layers.5.input_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
| 67 |
+
"model.layers.5.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
| 68 |
+
"model.layers.6.self_attn.q_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 69 |
+
"model.layers.6.self_attn.k_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 70 |
+
"model.layers.6.self_attn.v_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 71 |
+
"model.layers.6.self_attn.o_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 72 |
+
"model.layers.6.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00008.bin",
|
| 73 |
+
"model.layers.6.mlp.gate_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 74 |
+
"model.layers.6.mlp.up_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 75 |
+
"model.layers.6.mlp.down_proj.weight": "pytorch_model-00002-of-00008.bin",
|
| 76 |
+
"model.layers.6.input_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
| 77 |
+
"model.layers.6.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
| 78 |
+
"model.layers.11.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
| 79 |
+
"model.layers.17.post_attention_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
| 80 |
+
"model.layers.23.post_attention_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
| 81 |
+
"model.layers.29.post_attention_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
| 82 |
+
"model.layers.35.post_attention_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
| 83 |
+
"model.layers.41.post_attention_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
| 84 |
+
"model.layers.47.post_attention_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
| 85 |
+
"model.norm.weight": "pytorch_model-00008-of-00008.bin",
|
| 86 |
+
"lm_head.weight": "pytorch_model-00008-of-00008.bin"
|
| 87 |
+
}
|
| 88 |
+
}
|