Instructions to use Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1") model = AutoModelForCausalLM.from_pretrained("Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1", device_map="auto") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1
- SGLang
How to use Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1 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 "Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1" \ --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": "Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1", "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 "Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1" \ --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": "Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1 with Docker Model Runner:
docker model run hf.co/Indexnusrefather/Erebus-RP-12B-Instruct-2608-v1
Erebus-RP-12B-Instruct-2608-v1: Complex Finetune of Gemma 3 12b it Aimed at Enhancing Roleplay and Creative Writing.
"Specialized dataset was used to aggressively make the model roleplay close to how bigger models do, resulting in longer messages and better track of the story."
Quick Overview:
Better roleplay than the base:
- Model was trained on carefully selected number of high quality chat logs, filtered only for long term conversations with proper assistant turns.
- Entire process was carefully controlled by me to ensure that model can change its writing style without overcooking, this version is a result of repeated attempts until I finally found the right setup.
- Reduced refusals due to dataset containing a number of explicit logs.
Quants(this time I will release safetensors and quants in different repos for more convenience):
- BF16: Overkill
- Q8_0: Highest quality, still overkill
- Q6_K: Extremely high quality, near lossless
- Q5_K_M: Very high quality, fast, recommended.
- Q4_K_M: High quality, very fast, saves a lot of space, recommended.
- Q3_K_M: Lower quality, fastest.
Note:
This model turned out pretty well, Nyx is more intelligent and better and instruction following, Erebus is more creative.
I didn't select gemma 4 12b as the base because it was a hell to work with, and was in my observations way more heavily RLed than the gemma 3 12b it, so I took the older generation as the base.
Next I'll probably work on finetuning Mellum 2 12B A2.5B Instruct, also might turn my attention back to Ministral 3 2512. either 3B or 8B I don't know yet,
- Downloads last month
- 10
