Instructions to use SteelStorage/L3-Aethora-15B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SteelStorage/L3-Aethora-15B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="SteelStorage/L3-Aethora-15B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("SteelStorage/L3-Aethora-15B") model = AutoModelForCausalLM.from_pretrained("SteelStorage/L3-Aethora-15B") 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use SteelStorage/L3-Aethora-15B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SteelStorage/L3-Aethora-15B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SteelStorage/L3-Aethora-15B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/SteelStorage/L3-Aethora-15B
- SGLang
How to use SteelStorage/L3-Aethora-15B 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 "SteelStorage/L3-Aethora-15B" \ --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": "SteelStorage/L3-Aethora-15B", "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 "SteelStorage/L3-Aethora-15B" \ --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": "SteelStorage/L3-Aethora-15B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use SteelStorage/L3-Aethora-15B with Docker Model Runner:
docker model run hf.co/SteelStorage/L3-Aethora-15B
L3-Aethora-15B
The Skullery Presents L3-Aethora-15B.
Creator: Steelskull
Dataset: Aether-Lite-V1.2
Trained: 4 x A100 for 15 hours Using RsLora and DORA
About L3-Aethora-15B:
L3 = Llama3
L3-Aethora-15B was crafted through using the abilteration method to adjust model responses. The model's refusal is inhibited, focusing on yielding more compliant and facilitative dialogue interactions. It then underwent a modified DUS (Depth Up Scale) merge (originally used by @Elinas) by using passthrough merge to create a 15b model, with specific adjustments (zeroing) to 'o_proj' and 'down_proj', enhancing its efficiency and reducing perplexity. This created AbL3In-15b.
AbL3In-15b was then trained for 4 epochs using Rslora & DORA training methods on the Aether-Lite-V1.2 dataset, containing ~82000 high quality samples, designed to strike a fine balance between creativity, slop, and intelligence at about a 60/40 split
This model is trained on the L3 prompt format.
Quants:
Dataset Summary: (Filtered)
Filtered Phrases: GPTslop, Claudism's
- mrfakename/Pure-Dove-ShareGPT: Processed 3707, Removed 150
- mrfakename/Capybara-ShareGPT: Processed 13412, Removed 2594
- jondurbin/airoboros-3.2: Processed 54517, Removed 4192
- PJMixers/grimulkan_theory-of-mind-ShareGPT: Processed 533, Removed 6
- grimulkan/PIPPA-augmented-dedup: Processed 869, Removed 46
- grimulkan/LimaRP-augmented: Processed 790, Removed 14
- PJMixers/grimulkan_physical-reasoning-ShareGPT: Processed 895, Removed 4
- MinervaAI/Aesir-Preview: Processed 994, Removed 6
- Doctor-Shotgun/no-robots-sharegpt: Processed 9911, Removed 89
Deduplication Stats:
Starting row count: 85628, Final row count: 81960, Rows removed: 3668
I've had a few people ask about donations so here's a link:
- Downloads last month
- 3,894