Instructions to use MultiverseComputingCAI/Hypernova-60B-2605 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MultiverseComputingCAI/Hypernova-60B-2605 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MultiverseComputingCAI/Hypernova-60B-2605") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MultiverseComputingCAI/Hypernova-60B-2605") model = AutoModelForCausalLM.from_pretrained("MultiverseComputingCAI/Hypernova-60B-2605") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use MultiverseComputingCAI/Hypernova-60B-2605 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MultiverseComputingCAI/Hypernova-60B-2605" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MultiverseComputingCAI/Hypernova-60B-2605", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/MultiverseComputingCAI/Hypernova-60B-2605
- SGLang
How to use MultiverseComputingCAI/Hypernova-60B-2605 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 "MultiverseComputingCAI/Hypernova-60B-2605" \ --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": "MultiverseComputingCAI/Hypernova-60B-2605", "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 "MultiverseComputingCAI/Hypernova-60B-2605" \ --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": "MultiverseComputingCAI/Hypernova-60B-2605", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use MultiverseComputingCAI/Hypernova-60B-2605 with Docker Model Runner:
docker model run hf.co/MultiverseComputingCAI/Hypernova-60B-2605
Update README.md
Browse files
README.md
CHANGED
|
@@ -225,13 +225,9 @@ Benchmark scores were obtained with the following setups. Methodology varies by
|
|
| 225 |
#### Metrics reported
|
| 226 |
|
| 227 |
- **System Output Throughput (higher is better)**: Mean output tokens per second across all concurrent requests over the benchmarking phase.
|
| 228 |
-
- **End-to-End Latency per Query (lower is better):** Median end-to-end response time for each query from the time the query is sent.
|
| 229 |
-
- **Output Speed per Query (higher is better):** Median output tokens per second after the first token is received for each query.
|
| 230 |
- **Time to first token (TTFT) (lower is better):** Median time to first token.
|
| 231 |
-
- **Estimated total memory — (lower is better):** Median from each GuideLLM phase (estimated total footprint: weights plus KV contribution from monitored usage).
|
| 232 |
- **Model weights (lower is better):**
|
| 233 |
|
| 234 |
-
On the same hardware and harness, **HyperNova 60B 2605** is compared to **gpt-oss-120b** using GuideLLM. Each table lists **median** values for that model at each **concurrency phase** (1 → 256 concurrent requests).
|
| 235 |
|
| 236 |
| Metric | GPT-OSS-120B | Hypernova 60B 2605 |
|
| 237 |
|--------|-------------:|-------------------:|
|
|
@@ -244,18 +240,17 @@ On the same hardware and harness, **HyperNova 60B 2605** is compared to **gpt-os
|
|
| 244 |
| Model weights (GB) | 121.54 | 31.81 |
|
| 245 |
|
| 246 |
|
| 247 |
-
|
| 248 |
#### Performance evaluation conditions
|
| 249 |
|
| 250 |
Our performance evaluation follows the spirit of [Artificial Analysis](https://artificialanalysis.ai/methodology/system-load-test).
|
| 251 |
-
|
| 252 |
-
- **Inference library**: vLLM 0.13.0
|
| 253 |
- **Monitoring libraries**: GuideLLM, nvidia-ml-py
|
| 254 |
- **Hardware**: 1× NVIDIA H200 Tensor Core GPU
|
| 255 |
-
- **Conditions**: **concurrency phases**
|
| 256 |
- **Phase duration**: Each phase lasts 3 minutes (excluding ramp-up and cool-down periods).
|
| 257 |
-
- **Workload shape:** input
|
| 258 |
-
- **
|
|
|
|
| 259 |
|
| 260 |
The figure below is a **side-by-side comparison at concurrency = 128 only**
|
| 261 |
|
|
|
|
| 225 |
#### Metrics reported
|
| 226 |
|
| 227 |
- **System Output Throughput (higher is better)**: Mean output tokens per second across all concurrent requests over the benchmarking phase.
|
|
|
|
|
|
|
| 228 |
- **Time to first token (TTFT) (lower is better):** Median time to first token.
|
|
|
|
| 229 |
- **Model weights (lower is better):**
|
| 230 |
|
|
|
|
| 231 |
|
| 232 |
| Metric | GPT-OSS-120B | Hypernova 60B 2605 |
|
| 233 |
|--------|-------------:|-------------------:|
|
|
|
|
| 240 |
| Model weights (GB) | 121.54 | 31.81 |
|
| 241 |
|
| 242 |
|
|
|
|
| 243 |
#### Performance evaluation conditions
|
| 244 |
|
| 245 |
Our performance evaluation follows the spirit of [Artificial Analysis](https://artificialanalysis.ai/methodology/system-load-test).
|
| 246 |
+
- **Inference library**: vLLM 0.18.0
|
|
|
|
| 247 |
- **Monitoring libraries**: GuideLLM, nvidia-ml-py
|
| 248 |
- **Hardware**: 1× NVIDIA H200 Tensor Core GPU
|
| 249 |
+
- **Conditions**: **concurrency phases** 128
|
| 250 |
- **Phase duration**: Each phase lasts 3 minutes (excluding ramp-up and cool-down periods).
|
| 251 |
+
- **Workload shape:** 1k input / 1k output
|
| 252 |
+
- **Decode:** temperature: 0.0, top_p: 1.0
|
| 253 |
+
|
| 254 |
|
| 255 |
The figure below is a **side-by-side comparison at concurrency = 128 only**
|
| 256 |
|