Text Generation
Transformers
Safetensors
English
lfm
liquidai
lfm2.5
coding-agent
thinking
fable
aether-mythos
agentic
tool-use
unsloth
conversational
Instructions to use enosislabs/AETHER-Mythos-1-1.2B-adapter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use enosislabs/AETHER-Mythos-1-1.2B-adapter with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="enosislabs/AETHER-Mythos-1-1.2B-adapter") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("enosislabs/AETHER-Mythos-1-1.2B-adapter", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use enosislabs/AETHER-Mythos-1-1.2B-adapter with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "enosislabs/AETHER-Mythos-1-1.2B-adapter" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "enosislabs/AETHER-Mythos-1-1.2B-adapter", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/enosislabs/AETHER-Mythos-1-1.2B-adapter
- SGLang
How to use enosislabs/AETHER-Mythos-1-1.2B-adapter 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 "enosislabs/AETHER-Mythos-1-1.2B-adapter" \ --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": "enosislabs/AETHER-Mythos-1-1.2B-adapter", "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 "enosislabs/AETHER-Mythos-1-1.2B-adapter" \ --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": "enosislabs/AETHER-Mythos-1-1.2B-adapter", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use enosislabs/AETHER-Mythos-1-1.2B-adapter 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 enosislabs/AETHER-Mythos-1-1.2B-adapter 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 enosislabs/AETHER-Mythos-1-1.2B-adapter to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for enosislabs/AETHER-Mythos-1-1.2B-adapter to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="enosislabs/AETHER-Mythos-1-1.2B-adapter", max_seq_length=2048, ) - Docker Model Runner
How to use enosislabs/AETHER-Mythos-1-1.2B-adapter with Docker Model Runner:
docker model run hf.co/enosislabs/AETHER-Mythos-1-1.2B-adapter
Upload AETHER-Mythos-1 LoRA adapters
Browse files- README.md +9 -9
- adapter_config.json +3 -12
- adapter_model.safetensors +2 -2
- tokenizer_config.json +0 -0
README.md
CHANGED
|
@@ -43,15 +43,15 @@ into an efficient backbone. We prioritize:
|
|
| 43 |
## Base model
|
| 44 |
|
| 45 |
- **Base**: [`LiquidAI/LFM2.5-1.2B-Thinking`](https://huggingface.co/LiquidAI/LFM2.5-1.2B-Thinking)
|
| 46 |
-
- **Context trained**: up to
|
| 47 |
-
- **Method**: LoRA (r=
|
| 48 |
|
| 49 |
## Data mixture
|
| 50 |
|
| 51 |
-
- **fable5_cot** (`Glint-Research/Fable-5-traces`) weight=0.65 — Primary
|
| 52 |
-
- **opencode_reasoning** (`nvidia/OpenCodeReasoning`) weight=0.18 —
|
| 53 |
-
- **open_r1_codeforces** (`open-r1/codeforces-cots`) weight=0.
|
| 54 |
-
- **openthoughts_code** (`open-thoughts/OpenThoughts-114k`) weight=0.
|
| 55 |
|
| 56 |
### Data provenance & licenses
|
| 57 |
|
|
@@ -72,10 +72,10 @@ under Liquid AI’s LFM license terms.
|
|
| 72 |
| Setting | Value |
|
| 73 |
|--------|--------|
|
| 74 |
| GPU | L40S (Modal) |
|
| 75 |
-
| Effective batch size |
|
| 76 |
-
| Learning rate |
|
| 77 |
| Schedule | cosine |
|
| 78 |
-
| Epochs / max steps | 1.0 /
|
| 79 |
| Packing | True |
|
| 80 |
| Optim | adamw_8bit |
|
| 81 |
| Grad checkpointing | unsloth |
|
|
|
|
| 43 |
## Base model
|
| 44 |
|
| 45 |
- **Base**: [`LiquidAI/LFM2.5-1.2B-Thinking`](https://huggingface.co/LiquidAI/LFM2.5-1.2B-Thinking)
|
| 46 |
+
- **Context trained**: up to 32768 tokens (packing enabled)
|
| 47 |
+
- **Method**: LoRA (r=128, alpha=256)
|
| 48 |
|
| 49 |
## Data mixture
|
| 50 |
|
| 51 |
+
- **fable5_cot** (`Glint-Research/Fable-5-traces`) weight=0.65 — Primary identity and agent trace signal
|
| 52 |
+
- **opencode_reasoning** (`nvidia/OpenCodeReasoning`) weight=0.18 — prompt_completion
|
| 53 |
+
- **open_r1_codeforces** (`open-r1/codeforces-cots`) weight=0.07 — messages
|
| 54 |
+
- **openthoughts_code** (`open-thoughts/OpenThoughts-114k`) weight=0.10 — messages
|
| 55 |
|
| 56 |
### Data provenance & licenses
|
| 57 |
|
|
|
|
| 72 |
| Setting | Value |
|
| 73 |
|--------|--------|
|
| 74 |
| GPU | L40S (Modal) |
|
| 75 |
+
| Effective batch size | 16 |
|
| 76 |
+
| Learning rate | 8e-05 |
|
| 77 |
| Schedule | cosine |
|
| 78 |
+
| Epochs / max steps | 1.0 / 100 |
|
| 79 |
| Packing | True |
|
| 80 |
| Optim | adamw_8bit |
|
| 81 |
| Grad checkpointing | unsloth |
|
adapter_config.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
"layers_pattern": null,
|
| 21 |
"layers_to_transform": null,
|
| 22 |
"loftq_config": {},
|
| 23 |
-
"lora_alpha":
|
| 24 |
"lora_bias": false,
|
| 25 |
"lora_dropout": 0.0,
|
| 26 |
"lora_ga_config": null,
|
|
@@ -30,19 +30,10 @@
|
|
| 30 |
"peft_type": "LORA",
|
| 31 |
"peft_version": "0.19.1",
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
-
"r":
|
| 34 |
"rank_pattern": {},
|
| 35 |
"revision": null,
|
| 36 |
-
"target_modules": [
|
| 37 |
-
"in_proj",
|
| 38 |
-
"out_proj",
|
| 39 |
-
"w2",
|
| 40 |
-
"v_proj",
|
| 41 |
-
"w1",
|
| 42 |
-
"w3",
|
| 43 |
-
"k_proj",
|
| 44 |
-
"q_proj"
|
| 45 |
-
],
|
| 46 |
"target_parameters": null,
|
| 47 |
"task_type": "CAUSAL_LM",
|
| 48 |
"trainable_token_indices": null,
|
|
|
|
| 20 |
"layers_pattern": null,
|
| 21 |
"layers_to_transform": null,
|
| 22 |
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 256,
|
| 24 |
"lora_bias": false,
|
| 25 |
"lora_dropout": 0.0,
|
| 26 |
"lora_ga_config": null,
|
|
|
|
| 30 |
"peft_type": "LORA",
|
| 31 |
"peft_version": "0.19.1",
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
+
"r": 128,
|
| 34 |
"rank_pattern": {},
|
| 35 |
"revision": null,
|
| 36 |
+
"target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer).*?(?:q_proj|k_proj|v_proj|out_proj|in_proj|w1|w2|w3))|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer)\\.(?:(?:q_proj|k_proj|v_proj|out_proj|in_proj|w1|w2|w3)))",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
"target_parameters": null,
|
| 38 |
"task_type": "CAUSAL_LM",
|
| 39 |
"trainable_token_indices": null,
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:488ab92d094984063fdce7f8aa308d9316c111092c1d5d1715c5fc0ec3043b49
|
| 3 |
+
size 292572344
|
tokenizer_config.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|