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
SFT/Alignment - Phase 007-07-MLP8: ethicalabs/Kurtis-EON1-SFT Mix (1 epoch, 200k samples, bf16, LoRA disabled)
Learning from mistakes: when we use LoRA we freeze the base model and only train a tiny fraction of the parameters. It protects pre-training base knowledge, but after several attempts I noticed bottlenecks in its ability to learn. Increasing lora alpha and r or adjusting the ratio didn't help. Consider the base model has been trained on 5BT only, we're far away from overfitting.
Training in progress on a single AMD GPU (Radeon AI PRO R9700 32GB)
Dataset distribution:
HuggingFaceTB/cosmopedia-v2: 64299 ( 32.15%)
teknium/OpenHermes-2.5: 59249 ( 29.62%)
mlabonne/FineTome-100k: 12990 ( 6.49%)
samhog/psychology-10k: 12129 ( 6.06%)
jondurbin/airoboros-3.2: 11883 ( 5.94%)
HuggingFaceH4/ultrafeedback_binarized: 11773 ( 5.89%)
CohereForAI/aya_dataset: 11614 ( 5.81%)
fadodr/mental_health_therapy: 10437 ( 5.22%)
garage-bAInd/Open-Platypus: 3187 ( 1.59%)
ethicalabs/IdentityShield: 2439 ( 1.22%)
this checkpoint captures an intermediate state prior to structural patches in our completion-only loss masking and hybrid attention routing. Due to an attention anomaly, the model effectively trapped itself in a high-confidence feedback loop.
It generates tokens with extremely high probability scores, but the outputs are purely hallucinatory reflections of the user's prompt rather than grounded logic. While a fascinating look at unconstrained predictive coding, it does not meet our needs. The bug has been resolved in subsequent weights.
