Instructions to use QuantFactory/L3-Aethora-15B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuantFactory/L3-Aethora-15B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="QuantFactory/L3-Aethora-15B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("QuantFactory/L3-Aethora-15B-GGUF", dtype="auto") - llama-cpp-python
How to use QuantFactory/L3-Aethora-15B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/L3-Aethora-15B-GGUF", filename="L3-Aethora-15B.Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use QuantFactory/L3-Aethora-15B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/L3-Aethora-15B-GGUF: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 QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/L3-Aethora-15B-GGUF: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 QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use QuantFactory/L3-Aethora-15B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "QuantFactory/L3-Aethora-15B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuantFactory/L3-Aethora-15B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M
- SGLang
How to use QuantFactory/L3-Aethora-15B-GGUF 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 "QuantFactory/L3-Aethora-15B-GGUF" \ --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": "QuantFactory/L3-Aethora-15B-GGUF", "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 "QuantFactory/L3-Aethora-15B-GGUF" \ --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": "QuantFactory/L3-Aethora-15B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use QuantFactory/L3-Aethora-15B-GGUF with Ollama:
ollama run hf.co/QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M
- Unsloth Studio new
How to use QuantFactory/L3-Aethora-15B-GGUF 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 QuantFactory/L3-Aethora-15B-GGUF 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 QuantFactory/L3-Aethora-15B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for QuantFactory/L3-Aethora-15B-GGUF to start chatting
- Docker Model Runner
How to use QuantFactory/L3-Aethora-15B-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M
- Lemonade
How to use QuantFactory/L3-Aethora-15B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/L3-Aethora-15B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.L3-Aethora-15B-GGUF-Q4_K_M
List all available models
lemonade list
QuantFactory/L3-Aethora-15B-GGUF
This is quantized version of Steelskull/L3-Aethora-15B created using llama.cpp
Model Description
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.
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
- Downloads last month
- 114
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for QuantFactory/L3-Aethora-15B-GGUF
Base model
SteelStorage/L3-Aethora-15B