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, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- 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
File size: 6,145 Bytes
758bb3e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | {
"model_name": "Helion-V1.5-XL",
"model_id": "DeepXR/Helion-V1.5-XL",
"model_description": "Helion-V1.5-XL is a 16B parameter instruction-tuned language model with enhanced capabilities across coding, reasoning, and creative tasks.",
"model_details": {
"organization": "DeepXR",
"version": "1.5-XL",
"release_date": "2024-11-01",
"model_type": "Causal Language Model",
"base_model": "Helion-V1.5",
"architecture": "Transformer Decoder",
"parameters": "16.2B",
"license": "Apache-2.0",
"languages": ["en", "es", "fr", "de", "zh", "ja", "ko", "ru", "ar", "hi", "multilingual"],
"library": "transformers",
"tags": ["text-generation", "instruction-following", "conversational", "multilingual"]
},
"intended_use": {
"primary_use_cases": [
"General-purpose text generation",
"Conversational AI and chatbots",
"Code generation and explanation",
"Content creation and editing",
"Question answering",
"Summarization",
"Translation",
"Analysis and reasoning"
],
"out_of_scope_uses": [
"Medical diagnosis or treatment recommendations",
"Legal advice",
"Financial investment decisions",
"Safety-critical applications without human oversight",
"Generating harmful, illegal, or unethical content"
]
},
"training_data": {
"datasets": [
"Filtered CommonCrawl",
"Books Corpus",
"GitHub Code",
"ArXiv Papers",
"Wikipedia (multiple languages)",
"Stack Overflow",
"Custom instruction datasets"
],
"total_tokens": "4.5T",
"cutoff_date": "2024-01-31",
"data_preprocessing": [
"Quality filtering",
"Deduplication",
"PII removal",
"Toxicity filtering",
"Language identification"
]
},
"training_procedure": {
"training_regime": "Mixed precision (bfloat16)",
"compute_infrastructure": "512x NVIDIA A100 80GB",
"training_time": "28 days",
"framework": "PyTorch 2.0 with FSDP",
"optimizer": {
"type": "AdamW",
"beta1": 0.9,
"beta2": 0.95,
"epsilon": 1e-8,
"weight_decay": 0.1
},
"learning_rate": {
"initial": 3e-4,
"schedule": "cosine decay with warmup",
"warmup_steps": 2000,
"min_lr": 3e-5
},
"batch_size": "4M tokens per batch",
"gradient_accumulation": 8,
"max_grad_norm": 1.0
},
"performance_metrics": {
"benchmarks": {
"MMLU": {
"score": 78.9,
"description": "Massive Multitask Language Understanding (5-shot)"
},
"HellaSwag": {
"score": 85.7,
"description": "Commonsense reasoning (10-shot)"
},
"ARC-Challenge": {
"score": 82.1,
"description": "Scientific reasoning (25-shot)"
},
"TruthfulQA": {
"score": 61.3,
"description": "Truthfulness in question answering"
},
"GSM8K": {
"score": 71.6,
"description": "Grade school math problems (8-shot)"
},
"HumanEval": {
"score": 67.8,
"description": "Python code generation (pass@1)"
},
"MBPP": {
"score": 72.4,
"description": "Mostly Basic Python Problems"
}
},
"multilingual_performance": {
"FLORES-101": 82.1,
"XNLI": 79.4
}
},
"ethical_considerations": {
"bias_analysis": "The model has been evaluated for biases across gender, race, religion, and other demographic factors. While efforts have been made to mitigate biases, users should be aware that biases present in training data may be reflected in model outputs.",
"safety_measures": [
"Constitutional AI principles applied",
"RLHF for alignment",
"Toxicity filtering in training data",
"Red teaming conducted",
"Refusal training for harmful requests"
],
"environmental_impact": {
"total_emissions": "~180 tCO2eq",
"compute_hours": "~336,000 GPU hours",
"carbon_offset": "100% offset through renewable energy credits"
}
},
"limitations": {
"known_issues": [
"May generate plausible but incorrect information (hallucination)",
"Performance degrades with very long contexts (>12K tokens)",
"Knowledge cutoff limits awareness of recent events",
"May struggle with highly specialized domain knowledge",
"Arithmetic and mathematical reasoning can be imprecise",
"Code generation may require validation and testing"
],
"recommendations": [
"Always verify critical information from authoritative sources",
"Use human oversight for high-stakes applications",
"Implement input/output filtering for production deployments",
"Test generated code thoroughly before deployment",
"Be aware of potential biases in sensitive applications"
]
},
"technical_specifications": {
"model_architecture": {
"type": "Transformer Decoder",
"num_layers": 48,
"hidden_size": 6144,
"num_attention_heads": 32,
"num_key_value_heads": 8,
"intermediate_size": 24576,
"vocab_size": 100000,
"max_position_embeddings": 16384,
"rope_theta": 10000.0,
"attention_mechanism": "Grouped Query Attention (GQA)",
"activation": "SwiGLU",
"normalization": "RMSNorm"
},
"inference_requirements": {
"minimum_vram": {
"fp16": "32GB",
"8bit": "18GB",
"4bit": "12GB"
},
"recommended_gpu": "NVIDIA A100, H100, or RTX 4090",
"cpu_inference": "Possible but slow (>128GB RAM recommended)"
}
},
"contact_information": {
"organization": "DeepXR",
"email": "support@deepxr.ai",
"website": "https://deepxr.ai",
"github": "https://github.com/DeepXR",
"huggingface": "https://huggingface.co/DeepXR"
},
"citation": {
"bibtex": "@misc{helion-v15-xl-2024,\n title={Helion-V1.5-XL: A Large-Scale Instruction-Tuned Language Model},\n author={DeepXR Research Team},\n year={2024},\n publisher={HuggingFace},\n howpublished={\\url{https://huggingface.co/DeepXR/Helion-V1.5-XL}}\n}"
}
} |