Instructions to use SicariusSicariiStuff/Zion_Alpha with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SicariusSicariiStuff/Zion_Alpha with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="SicariusSicariiStuff/Zion_Alpha")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("SicariusSicariiStuff/Zion_Alpha") model = AutoModelForCausalLM.from_pretrained("SicariusSicariiStuff/Zion_Alpha") - llama-cpp-python
How to use SicariusSicariiStuff/Zion_Alpha with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="SicariusSicariiStuff/Zion_Alpha", filename="Zion_Alpha-Q3_K_M.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use SicariusSicariiStuff/Zion_Alpha 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 SicariusSicariiStuff/Zion_Alpha:Q3_K_M # Run inference directly in the terminal: llama cli -hf SicariusSicariiStuff/Zion_Alpha:Q3_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf SicariusSicariiStuff/Zion_Alpha:Q3_K_M # Run inference directly in the terminal: llama cli -hf SicariusSicariiStuff/Zion_Alpha:Q3_K_M
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 SicariusSicariiStuff/Zion_Alpha:Q3_K_M # Run inference directly in the terminal: ./llama-cli -hf SicariusSicariiStuff/Zion_Alpha:Q3_K_M
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 SicariusSicariiStuff/Zion_Alpha:Q3_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf SicariusSicariiStuff/Zion_Alpha:Q3_K_M
Use Docker
docker model run hf.co/SicariusSicariiStuff/Zion_Alpha:Q3_K_M
- LM Studio
- Jan
- vLLM
How to use SicariusSicariiStuff/Zion_Alpha with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SicariusSicariiStuff/Zion_Alpha" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SicariusSicariiStuff/Zion_Alpha", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/SicariusSicariiStuff/Zion_Alpha:Q3_K_M
- SGLang
How to use SicariusSicariiStuff/Zion_Alpha 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 "SicariusSicariiStuff/Zion_Alpha" \ --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": "SicariusSicariiStuff/Zion_Alpha", "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 "SicariusSicariiStuff/Zion_Alpha" \ --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": "SicariusSicariiStuff/Zion_Alpha", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use SicariusSicariiStuff/Zion_Alpha with Ollama:
ollama run hf.co/SicariusSicariiStuff/Zion_Alpha:Q3_K_M
- Unsloth Studio
How to use SicariusSicariiStuff/Zion_Alpha 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 SicariusSicariiStuff/Zion_Alpha 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 SicariusSicariiStuff/Zion_Alpha to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for SicariusSicariiStuff/Zion_Alpha to start chatting
- Atomic Chat new
- Docker Model Runner
How to use SicariusSicariiStuff/Zion_Alpha with Docker Model Runner:
docker model run hf.co/SicariusSicariiStuff/Zion_Alpha:Q3_K_M
- Lemonade
How to use SicariusSicariiStuff/Zion_Alpha with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SicariusSicariiStuff/Zion_Alpha:Q3_K_M
Run and chat with the model
lemonade run user.Zion_Alpha-Q3_K_M
List all available models
lemonade list
Adding Evaluation Results
#2
by leaderboard-pr-bot - opened
README.md
CHANGED
|
@@ -2,6 +2,101 @@
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
<div align="center">
|
|
@@ -120,3 +215,17 @@ As of 04 June 2024, Zion_Alpha got the **Highest SNLI score in the world** among
|
|
| 120 |
- [My Ko-fi page](https://ko-fi.com/sicarius) ALL donations will go for research resources and compute, every bit counts ππ»
|
| 121 |
- [My Patreon](https://patreon.com/TenebraAI) ALL donations will go for research resources and compute, every bit counts ππ»
|
| 122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
license: apache-2.0
|
| 5 |
+
model-index:
|
| 6 |
+
- name: Zion_Alpha
|
| 7 |
+
results:
|
| 8 |
+
- task:
|
| 9 |
+
type: text-generation
|
| 10 |
+
name: Text Generation
|
| 11 |
+
dataset:
|
| 12 |
+
name: IFEval (0-Shot)
|
| 13 |
+
type: HuggingFaceH4/ifeval
|
| 14 |
+
args:
|
| 15 |
+
num_few_shot: 0
|
| 16 |
+
metrics:
|
| 17 |
+
- type: inst_level_strict_acc and prompt_level_strict_acc
|
| 18 |
+
value: 33.24
|
| 19 |
+
name: strict accuracy
|
| 20 |
+
source:
|
| 21 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=SicariusSicariiStuff/Zion_Alpha
|
| 22 |
+
name: Open LLM Leaderboard
|
| 23 |
+
- task:
|
| 24 |
+
type: text-generation
|
| 25 |
+
name: Text Generation
|
| 26 |
+
dataset:
|
| 27 |
+
name: BBH (3-Shot)
|
| 28 |
+
type: BBH
|
| 29 |
+
args:
|
| 30 |
+
num_few_shot: 3
|
| 31 |
+
metrics:
|
| 32 |
+
- type: acc_norm
|
| 33 |
+
value: 29.16
|
| 34 |
+
name: normalized accuracy
|
| 35 |
+
source:
|
| 36 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=SicariusSicariiStuff/Zion_Alpha
|
| 37 |
+
name: Open LLM Leaderboard
|
| 38 |
+
- task:
|
| 39 |
+
type: text-generation
|
| 40 |
+
name: Text Generation
|
| 41 |
+
dataset:
|
| 42 |
+
name: MATH Lvl 5 (4-Shot)
|
| 43 |
+
type: hendrycks/competition_math
|
| 44 |
+
args:
|
| 45 |
+
num_few_shot: 4
|
| 46 |
+
metrics:
|
| 47 |
+
- type: exact_match
|
| 48 |
+
value: 4.76
|
| 49 |
+
name: exact match
|
| 50 |
+
source:
|
| 51 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=SicariusSicariiStuff/Zion_Alpha
|
| 52 |
+
name: Open LLM Leaderboard
|
| 53 |
+
- task:
|
| 54 |
+
type: text-generation
|
| 55 |
+
name: Text Generation
|
| 56 |
+
dataset:
|
| 57 |
+
name: GPQA (0-shot)
|
| 58 |
+
type: Idavidrein/gpqa
|
| 59 |
+
args:
|
| 60 |
+
num_few_shot: 0
|
| 61 |
+
metrics:
|
| 62 |
+
- type: acc_norm
|
| 63 |
+
value: 5.37
|
| 64 |
+
name: acc_norm
|
| 65 |
+
source:
|
| 66 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=SicariusSicariiStuff/Zion_Alpha
|
| 67 |
+
name: Open LLM Leaderboard
|
| 68 |
+
- task:
|
| 69 |
+
type: text-generation
|
| 70 |
+
name: Text Generation
|
| 71 |
+
dataset:
|
| 72 |
+
name: MuSR (0-shot)
|
| 73 |
+
type: TAUR-Lab/MuSR
|
| 74 |
+
args:
|
| 75 |
+
num_few_shot: 0
|
| 76 |
+
metrics:
|
| 77 |
+
- type: acc_norm
|
| 78 |
+
value: 18.45
|
| 79 |
+
name: acc_norm
|
| 80 |
+
source:
|
| 81 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=SicariusSicariiStuff/Zion_Alpha
|
| 82 |
+
name: Open LLM Leaderboard
|
| 83 |
+
- task:
|
| 84 |
+
type: text-generation
|
| 85 |
+
name: Text Generation
|
| 86 |
+
dataset:
|
| 87 |
+
name: MMLU-PRO (5-shot)
|
| 88 |
+
type: TIGER-Lab/MMLU-Pro
|
| 89 |
+
config: main
|
| 90 |
+
split: test
|
| 91 |
+
args:
|
| 92 |
+
num_few_shot: 5
|
| 93 |
+
metrics:
|
| 94 |
+
- type: acc
|
| 95 |
+
value: 23.68
|
| 96 |
+
name: accuracy
|
| 97 |
+
source:
|
| 98 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=SicariusSicariiStuff/Zion_Alpha
|
| 99 |
+
name: Open LLM Leaderboard
|
| 100 |
---
|
| 101 |
|
| 102 |
<div align="center">
|
|
|
|
| 215 |
- [My Ko-fi page](https://ko-fi.com/sicarius) ALL donations will go for research resources and compute, every bit counts ππ»
|
| 216 |
- [My Patreon](https://patreon.com/TenebraAI) ALL donations will go for research resources and compute, every bit counts ππ»
|
| 217 |
|
| 218 |
+
|
| 219 |
+
# [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)
|
| 220 |
+
Detailed results can be found [here](https://huggingface.co/datasets/open-llm-leaderboard/details_SicariusSicariiStuff__Zion_Alpha)
|
| 221 |
+
|
| 222 |
+
| Metric |Value|
|
| 223 |
+
|-------------------|----:|
|
| 224 |
+
|Avg. |19.11|
|
| 225 |
+
|IFEval (0-Shot) |33.24|
|
| 226 |
+
|BBH (3-Shot) |29.16|
|
| 227 |
+
|MATH Lvl 5 (4-Shot)| 4.76|
|
| 228 |
+
|GPQA (0-shot) | 5.37|
|
| 229 |
+
|MuSR (0-shot) |18.45|
|
| 230 |
+
|MMLU-PRO (5-shot) |23.68|
|
| 231 |
+
|