clemsail commited on
Commit
4253dca
·
verified ·
1 Parent(s): 210b8cd

docs: rebrand legacy clemsail/eu-kiki-apertus-math-lora -> Ailiance-fr/apertus-math-lora

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -17,7 +17,7 @@ language:
17
  library_name: peft
18
  ---
19
 
20
- # eu-kiki-apertus-math-lora
21
 
22
  LoRA adapter for **swiss-ai/Apertus-70B-Instruct-2509**, part of the [ailiance](https://github.com/L-electron-Rare/ailiance) project. Live demo: https://www.ailiance.fr.
23
 
@@ -44,7 +44,7 @@ LoRA adapter for **swiss-ai/Apertus-70B-Instruct-2509**, part of the [ailiance](
44
 
45
  | Field | Value |
46
  |---|---|
47
- | **Versioned model name(s)** | `clemsail/eu-kiki-apertus-math-lora` (this LoRA adapter, v0.4.2) |
48
  | **Model dependencies** | This is a **fine-tune (LoRA, rank 16)** of the general-purpose AI model [`swiss-ai/Apertus-70B-Instruct-2509`](https://huggingface.co/swiss-ai/Apertus-70B-Instruct-2509). Refer to the base-model provider's PST for the underlying training summary. |
49
  | **Date of placement of the model on the Union market** | 2026-05-06 |
50
 
@@ -166,7 +166,7 @@ from mlx_lm.tuner.utils import linear_to_lora_layers
166
  from huggingface_hub import snapshot_download
167
 
168
  base_path = snapshot_download("swiss-ai/Apertus-70B-Instruct-2509")
169
- adapter_path = snapshot_download("clemsail/eu-kiki-apertus-math-lora")
170
 
171
  model, tokenizer = load(base_path)
172
  linear_to_lora_layers(model, num_layers=32, config={"rank": 16, "alpha": 32})
@@ -179,7 +179,7 @@ Or fuse and serve as a self-contained checkpoint:
179
  python -m mlx_lm fuse \
180
  --model swiss-ai/Apertus-70B-Instruct-2509 \
181
  --adapter-path <adapter_path> \
182
- --save-path /tmp/eu-kiki-apertus-math-lora-fused \
183
  --dequantize
184
  ```
185
 
 
17
  library_name: peft
18
  ---
19
 
20
+ # apertus-math-lora
21
 
22
  LoRA adapter for **swiss-ai/Apertus-70B-Instruct-2509**, part of the [ailiance](https://github.com/L-electron-Rare/ailiance) project. Live demo: https://www.ailiance.fr.
23
 
 
44
 
45
  | Field | Value |
46
  |---|---|
47
+ | **Versioned model name(s)** | `Ailiance-fr/apertus-math-lora` (this LoRA adapter, v0.4.2) |
48
  | **Model dependencies** | This is a **fine-tune (LoRA, rank 16)** of the general-purpose AI model [`swiss-ai/Apertus-70B-Instruct-2509`](https://huggingface.co/swiss-ai/Apertus-70B-Instruct-2509). Refer to the base-model provider's PST for the underlying training summary. |
49
  | **Date of placement of the model on the Union market** | 2026-05-06 |
50
 
 
166
  from huggingface_hub import snapshot_download
167
 
168
  base_path = snapshot_download("swiss-ai/Apertus-70B-Instruct-2509")
169
+ adapter_path = snapshot_download("Ailiance-fr/apertus-math-lora")
170
 
171
  model, tokenizer = load(base_path)
172
  linear_to_lora_layers(model, num_layers=32, config={"rank": 16, "alpha": 32})
 
179
  python -m mlx_lm fuse \
180
  --model swiss-ai/Apertus-70B-Instruct-2509 \
181
  --adapter-path <adapter_path> \
182
+ --save-path /tmp/apertus-math-lora-fused \
183
  --dequantize
184
  ```
185