Instructions to use ethicalabs/Kurtis-EON1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ethicalabs/Kurtis-EON1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ethicalabs/Kurtis-EON1")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ethicalabs/Kurtis-EON1", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ethicalabs/Kurtis-EON1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ethicalabs/Kurtis-EON1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ethicalabs/Kurtis-EON1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ethicalabs/Kurtis-EON1
- SGLang
How to use ethicalabs/Kurtis-EON1 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 "ethicalabs/Kurtis-EON1" \ --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": "ethicalabs/Kurtis-EON1", "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 "ethicalabs/Kurtis-EON1" \ --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": "ethicalabs/Kurtis-EON1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ethicalabs/Kurtis-EON1 with Docker Model Runner:
docker model run hf.co/ethicalabs/Kurtis-EON1
Mid-Training - Phase 003: HuggingFaceTB/smoltalk
After the previous unsuccessful attempt to start SFT and DPO prematurely on an underfitted model, I decided to take a different approach. I am now continuing mid-training on a single AMD Ryzen AI Max+ 395 with trl. Due to our budget/compute constraints, we are using QLoRA (4-bit). Unfortunately, the session crashed, but we are now resuming. 🧑🚒
| Tasks | Version | Filter | n-shot | Metric | Value | Stderr | ||
|---|---|---|---|---|---|---|---|---|
| hellaswag | 1 | none | 0 | acc | ↑ | 0.2913 | ± | 0.0045 |
| none | 0 | acc_norm | ↑ | 0.3182 | ± | 0.0046 | ||
| piqa | 1 | none | 0 | acc | ↑ | 0.6251 | ± | 0.0113 |
| none | 0 | acc_norm | ↑ | 0.6224 | ± | 0.0113 | ||
| sciq | 1 | none | 0 | acc | ↑ | 0.7280 | ± | 0.0141 |
| none | 0 | acc_norm | ↑ | 0.6430 | ± | 0.0152 | ||
| winogrande | 1 | none | 0 | acc | ↑ | 0.5130 | ± | 0.0140 |
| Tasks | Version | Filter | n-shot | Metric | Value | Stderr | ||
|---|---|---|---|---|---|---|---|---|
| arc_easy | 1 | none | 0 | acc | ↑ | 0.471 | ± | 0.0102 |
| none | 0 | acc_norm | ↑ | 0.428 | ± | 0.0102 |
uv run lm_eval --model hf --model_args pretrained=models/Echo-DSRN-Small-Kurtis-EON1-v0.1,trust_remote_code=True,device_map="auto" --tasks openbookqa --output_path ./results_sft_smoltalk_phase2 --batch_size 1 --apply_chat_template --num_fewshot 3
| Tasks | Version | Filter | n-shot | Metric | Value | Stderr | ||
|---|---|---|---|---|---|---|---|---|
| openbookqa | 1 | none | 3 | acc | ↑ | 0.152 | ± | 0.0161 |
| none | 3 | acc_norm | ↑ | 0.324 | ± | 0.0210 |

