Instructions to use aixk/Aurora-0.5B-Volcano with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use aixk/Aurora-0.5B-Volcano with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf aixk/Aurora-0.5B-Volcano:F16 # Run inference directly in the terminal: llama cli -hf aixk/Aurora-0.5B-Volcano:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf aixk/Aurora-0.5B-Volcano:F16 # Run inference directly in the terminal: llama cli -hf aixk/Aurora-0.5B-Volcano:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf aixk/Aurora-0.5B-Volcano:F16 # Run inference directly in the terminal: ./llama-cli -hf aixk/Aurora-0.5B-Volcano:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf aixk/Aurora-0.5B-Volcano:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf aixk/Aurora-0.5B-Volcano:F16
Use Docker
docker model run hf.co/aixk/Aurora-0.5B-Volcano:F16
- LM Studio
- Jan
- Ollama
How to use aixk/Aurora-0.5B-Volcano with Ollama:
ollama run hf.co/aixk/Aurora-0.5B-Volcano:F16
- Unsloth Studio
How to use aixk/Aurora-0.5B-Volcano with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for aixk/Aurora-0.5B-Volcano to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for aixk/Aurora-0.5B-Volcano to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for aixk/Aurora-0.5B-Volcano to start chatting
- Docker Model Runner
How to use aixk/Aurora-0.5B-Volcano with Docker Model Runner:
docker model run hf.co/aixk/Aurora-0.5B-Volcano:F16
- Lemonade
How to use aixk/Aurora-0.5B-Volcano with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull aixk/Aurora-0.5B-Volcano:F16
Run and chat with the model
lemonade run user.Aurora-0.5B-Volcano-F16
List all available models
lemonade list
- Atomic Chat
Update base model with Aurora metadata and synchronized Safetensors
Browse files- aurora-volcano-f16.gguf +1 -1
- aurora-volcano-q4_k_m.gguf +1 -1
- config.json +2 -2
- model.safetensors +2 -2
aurora-volcano-f16.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1341874880
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:995b954a78590aed4fd674a5c164ee87132d66e1078c45483a1d45e6f4b32112
|
| 3 |
size 1341874880
|
aurora-volcano-q4_k_m.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 411479744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dec1e5fd5e243c8ca311f639f15d4282a9f8be7b25923a3f4437b8c41e513a44
|
| 3 |
size 411479744
|
config.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"_name_or_path": "./Aurora-0.5B-Volcano_final",
|
| 3 |
"architectures": [
|
| 4 |
-
"
|
| 5 |
],
|
| 6 |
"attention_bias": false,
|
| 7 |
"attention_dropout": 0.0,
|
|
@@ -14,7 +14,7 @@
|
|
| 14 |
"intermediate_size": 5632,
|
| 15 |
"max_position_embeddings": 2048,
|
| 16 |
"mlp_bias": false,
|
| 17 |
-
"model_type": "
|
| 18 |
"num_attention_heads": 16,
|
| 19 |
"num_hidden_layers": 32,
|
| 20 |
"num_key_value_heads": 4,
|
|
|
|
| 1 |
{
|
| 2 |
"_name_or_path": "./Aurora-0.5B-Volcano_final",
|
| 3 |
"architectures": [
|
| 4 |
+
"AuroraForCausalLM"
|
| 5 |
],
|
| 6 |
"attention_bias": false,
|
| 7 |
"attention_dropout": 0.0,
|
|
|
|
| 14 |
"intermediate_size": 5632,
|
| 15 |
"max_position_embeddings": 2048,
|
| 16 |
"mlp_bias": false,
|
| 17 |
+
"model_type": "aurora",
|
| 18 |
"num_attention_heads": 16,
|
| 19 |
"num_hidden_layers": 32,
|
| 20 |
"num_key_value_heads": 4,
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2002ddc0550b6540de671cfa05dae4b022f5b704bd517ca28aad7d0b1c986d4b
|
| 3 |
+
size 1341032576
|