Text Generation
Transformers
Safetensors
GGUF
English
qwen3
unsloth
lora
reasoning
distillation
chain-of-thought
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use EphAsad/Atem-8B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EphAsad/Atem-8B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="EphAsad/Atem-8B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("EphAsad/Atem-8B") model = AutoModelForCausalLM.from_pretrained("EphAsad/Atem-8B") 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]:])) - llama-cpp-python
How to use EphAsad/Atem-8B with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="EphAsad/Atem-8B", filename="Atem-8b.Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use EphAsad/Atem-8B 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 EphAsad/Atem-8B:Q4_K_M # Run inference directly in the terminal: llama cli -hf EphAsad/Atem-8B:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf EphAsad/Atem-8B:Q4_K_M # Run inference directly in the terminal: llama cli -hf EphAsad/Atem-8B:Q4_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 EphAsad/Atem-8B:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf EphAsad/Atem-8B:Q4_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 EphAsad/Atem-8B:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf EphAsad/Atem-8B:Q4_K_M
Use Docker
docker model run hf.co/EphAsad/Atem-8B:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use EphAsad/Atem-8B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "EphAsad/Atem-8B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EphAsad/Atem-8B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/EphAsad/Atem-8B:Q4_K_M
- SGLang
How to use EphAsad/Atem-8B 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 "EphAsad/Atem-8B" \ --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": "EphAsad/Atem-8B", "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 "EphAsad/Atem-8B" \ --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": "EphAsad/Atem-8B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use EphAsad/Atem-8B with Ollama:
ollama run hf.co/EphAsad/Atem-8B:Q4_K_M
- Unsloth Studio
How to use EphAsad/Atem-8B 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 EphAsad/Atem-8B 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 EphAsad/Atem-8B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for EphAsad/Atem-8B to start chatting
- Pi
How to use EphAsad/Atem-8B with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf EphAsad/Atem-8B:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "EphAsad/Atem-8B:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use EphAsad/Atem-8B with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf EphAsad/Atem-8B:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default EphAsad/Atem-8B:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use EphAsad/Atem-8B with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf EphAsad/Atem-8B:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "EphAsad/Atem-8B:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use EphAsad/Atem-8B with Docker Model Runner:
docker model run hf.co/EphAsad/Atem-8B:Q4_K_M
- Lemonade
How to use EphAsad/Atem-8B with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull EphAsad/Atem-8B:Q4_K_M
Run and chat with the model
lemonade run user.Atem-8B-Q4_K_M
List all available models
lemonade list
Upload README.md
#1
by EphAsad - opened
README.md
CHANGED
|
@@ -21,6 +21,126 @@ language:
|
|
| 21 |
- en
|
| 22 |
pipeline_tag: text-generation
|
| 23 |
library_name: transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
---
|
| 25 |
|
| 26 |

|
|
@@ -384,4 +504,4 @@ Released under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-
|
|
| 384 |
|
| 385 |
---
|
| 386 |
|
| 387 |
-
Built independently by Zain Asad — [EphAsad](https://huggingface.co/EphAsad)
|
|
|
|
| 21 |
- en
|
| 22 |
pipeline_tag: text-generation
|
| 23 |
library_name: transformers
|
| 24 |
+
model-index:
|
| 25 |
+
- name: Atem-8B
|
| 26 |
+
results:
|
| 27 |
+
- task:
|
| 28 |
+
type: text-generation
|
| 29 |
+
name: Text Generation
|
| 30 |
+
dataset:
|
| 31 |
+
name: ARC (Challenge)
|
| 32 |
+
type: ai2_arc
|
| 33 |
+
config: ARC-Challenge
|
| 34 |
+
split: test
|
| 35 |
+
args:
|
| 36 |
+
num_few_shot: 0
|
| 37 |
+
metrics:
|
| 38 |
+
- type: acc_norm
|
| 39 |
+
value: 56.9
|
| 40 |
+
name: acc_norm
|
| 41 |
+
verified: false
|
| 42 |
+
- task:
|
| 43 |
+
type: text-generation
|
| 44 |
+
name: Text Generation
|
| 45 |
+
dataset:
|
| 46 |
+
name: GSM8K
|
| 47 |
+
type: openai/gsm8k
|
| 48 |
+
config: main
|
| 49 |
+
split: test
|
| 50 |
+
args:
|
| 51 |
+
num_few_shot: 5
|
| 52 |
+
metrics:
|
| 53 |
+
- type: exact_match
|
| 54 |
+
value: 83.3
|
| 55 |
+
name: exact_match (strict-match)
|
| 56 |
+
verified: false
|
| 57 |
+
- task:
|
| 58 |
+
type: text-generation
|
| 59 |
+
name: Text Generation
|
| 60 |
+
dataset:
|
| 61 |
+
name: HellaSwag
|
| 62 |
+
type: Rowan/hellaswag
|
| 63 |
+
split: validation
|
| 64 |
+
args:
|
| 65 |
+
num_few_shot: 0
|
| 66 |
+
metrics:
|
| 67 |
+
- type: acc_norm
|
| 68 |
+
value: 76.2
|
| 69 |
+
name: acc_norm
|
| 70 |
+
verified: false
|
| 71 |
+
- task:
|
| 72 |
+
type: text-generation
|
| 73 |
+
name: Text Generation
|
| 74 |
+
dataset:
|
| 75 |
+
name: MMLU
|
| 76 |
+
type: cais/mmlu
|
| 77 |
+
config: all
|
| 78 |
+
split: test
|
| 79 |
+
args:
|
| 80 |
+
num_few_shot: 0
|
| 81 |
+
metrics:
|
| 82 |
+
- type: acc
|
| 83 |
+
value: 72.9
|
| 84 |
+
name: acc
|
| 85 |
+
verified: false
|
| 86 |
+
- task:
|
| 87 |
+
type: text-generation
|
| 88 |
+
name: Text Generation
|
| 89 |
+
dataset:
|
| 90 |
+
name: Winogrande
|
| 91 |
+
type: allenai/winogrande
|
| 92 |
+
config: winogrande_xl
|
| 93 |
+
split: validation
|
| 94 |
+
args:
|
| 95 |
+
num_few_shot: 0
|
| 96 |
+
metrics:
|
| 97 |
+
- type: acc
|
| 98 |
+
value: 71.8
|
| 99 |
+
name: acc
|
| 100 |
+
verified: false
|
| 101 |
+
- task:
|
| 102 |
+
type: text-generation
|
| 103 |
+
name: Text Generation
|
| 104 |
+
dataset:
|
| 105 |
+
name: PIQA
|
| 106 |
+
type: ybisk/piqa
|
| 107 |
+
split: validation
|
| 108 |
+
args:
|
| 109 |
+
num_few_shot: 0
|
| 110 |
+
metrics:
|
| 111 |
+
- type: acc
|
| 112 |
+
value: 78.1
|
| 113 |
+
name: acc
|
| 114 |
+
verified: false
|
| 115 |
+
- task:
|
| 116 |
+
type: text-generation
|
| 117 |
+
name: Text Generation
|
| 118 |
+
dataset:
|
| 119 |
+
name: OpenBookQA
|
| 120 |
+
type: allenai/openbookqa
|
| 121 |
+
config: main
|
| 122 |
+
split: test
|
| 123 |
+
args:
|
| 124 |
+
num_few_shot: 0
|
| 125 |
+
metrics:
|
| 126 |
+
- type: acc_norm
|
| 127 |
+
value: 43.2
|
| 128 |
+
name: acc_norm
|
| 129 |
+
verified: false
|
| 130 |
+
- task:
|
| 131 |
+
type: text-generation
|
| 132 |
+
name: Text Generation
|
| 133 |
+
dataset:
|
| 134 |
+
name: BoolQ
|
| 135 |
+
type: google/boolq
|
| 136 |
+
split: validation
|
| 137 |
+
args:
|
| 138 |
+
num_few_shot: 0
|
| 139 |
+
metrics:
|
| 140 |
+
- type: acc
|
| 141 |
+
value: 84.3
|
| 142 |
+
name: acc
|
| 143 |
+
verified: false
|
| 144 |
---
|
| 145 |
|
| 146 |

|
|
|
|
| 504 |
|
| 505 |
---
|
| 506 |
|
| 507 |
+
Built independently by Zain Asad — [EphAsad](https://huggingface.co/EphAsad)
|