clemsail commited on
Commit
3786848
·
verified ·
1 Parent(s): 8e84b7a

Add EU AI Act compliant model card

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: swiss-ai/Apertus-70B-Instruct-2509
4
+ library_name: peft
5
+ tags:
6
+ - mlx
7
+ - lora
8
+ - peft
9
+ - ailiance
10
+ - apertus
11
+ - embedded
12
+ language:
13
+ - en
14
+ - fr
15
+ pipeline_tag: text-generation
16
+ ---
17
+
18
+ # Ailiance — Apertus-70B-Instruct embedded LoRA
19
+
20
+ LoRA adapter fine-tuned on `swiss-ai/Apertus-70B-Instruct-2509` for **embedded** tasks.
21
+
22
+ > Maintained by **Ailiance** — French AI org publishing EU AI Act aligned LoRA adapters and datasets.
23
+
24
+ ## Quick start (MLX)
25
+
26
+ ```python
27
+ from mlx_lm import load, generate
28
+
29
+ model, tokenizer = load(
30
+ "swiss-ai/Apertus-70B-Instruct-2509",
31
+ adapter_path="Ailiance-fr/apertus-embedded-lora",
32
+ )
33
+
34
+ print(generate(model, tokenizer, prompt="..."))
35
+ ```
36
+
37
+ ## Training
38
+
39
+ | Hyperparameter | Value |
40
+ |------------------|------------------------|
41
+ | Base model | `swiss-ai/Apertus-70B-Instruct-2509` |
42
+ | Method | LoRA via `mlx-lm` |
43
+ | Rank | 16 |
44
+ | Scale | 2.0 |
45
+ | Alpha | 32 |
46
+ | Max seq length | 1024 |
47
+ | Iterations | 500 |
48
+ | Optimizer | Adam, LR 1e-5 |
49
+ | Hardware | Apple M3 Ultra 512 GB |
50
+
51
+ Training data lineage: derived from the **eu-kiki / mascarade** corpus
52
+ (Ailiance-fr datasets) curated for the `embedded` domain. See the
53
+ [Ailiance-fr dataset catalog](https://huggingface.co/Ailiance-fr) for upstream cards.
54
+
55
+ ## EU AI Act compliance
56
+
57
+ - **Article 53(1)(c)**: training data licenses preserved (permissive only).
58
+ - **Article 53(1)(d)**: training data summary — see source dataset cards on Ailiance-fr.
59
+ - **GPAI Code of Practice (July 2025)**: base `swiss-ai/Apertus-70B-Instruct-2509` released under apache-2.0; this LoRA inherits.
60
+ - **No web scraping**, **no licensed data**, **no PII**.
61
+
62
+ ## License
63
+
64
+ LoRA weights: **apache-2.0** (inherited from base).
65
+
66
+ ## Citation
67
+
68
+ ```bibtex
69
+ @misc{ailiance_apertus_embedded_2026,
70
+ author = {Ailiance},
71
+ title = {Ailiance — Apertus-70B-Instruct embedded LoRA},
72
+ year = {2026},
73
+ publisher = {Hugging Face},
74
+ url = {https://huggingface.co/Ailiance-fr/apertus-embedded-lora}
75
+ }
76
+ ```
77
+
78
+ ## Related
79
+
80
+ See the full [Ailiance-fr LoRA collection](https://huggingface.co/Ailiance-fr).