alexjerpelea commited on
Commit
a875b64
·
verified ·
1 Parent(s): 9738a86

add model card with results matrix + training details

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ base_model: Qwen/Qwen3.5-4B
5
+ language:
6
+ - en
7
+ - es
8
+ - fa
9
+ - hi
10
+ - ro
11
+ tags:
12
+ - continual-learning
13
+ - sft
14
+ - affective-state-identification
15
+ - multilingual
16
+ ---
17
+
18
+ # Qwen3.5-4B day-by-day multilingual SFT (en -> es -> fa -> hi -> ro)
19
+
20
+ Qwen3.5-4B fine-tuned sequentially on 5 languages for a continual-learning
21
+ "day in the life" experiment. Each language trained for one "day"
22
+ (3 epochs, 1000 train rows), starting from the previous day's checkpoint.
23
+ This checkpoint is the end of day 5 (Romanian) - the model has seen all
24
+ 5 languages in order.
25
+
26
+ **Task:** Fill [MASK] tokens in an "I feel ..." sentence with the
27
+ corresponding affective state expression(s).
28
+
29
+ ## Results - set_acc@1 on held-out test sets (1000 rows/lang)
30
+
31
+ ```
32
+ test_en test_es test_fa test_hi test_ro
33
+ day1 (en) 0.187* 0.149 0.114 0.117 0.121
34
+ day2 (->es) 0.192 0.267* 0.112 0.088 0.090
35
+ day3 (->fa) 0.166 0.231 0.445* 0.068 0.111
36
+ day4 (->hi) 0.157 0.234 0.315 0.571* 0.174
37
+ day5 (->ro) 0.144 0.167 0.358 0.533 0.443*
38
+ ```
39
+
40
+ `*` = just-trained language. This checkpoint corresponds to the final row.
41
+
42
+ ## Training details
43
+
44
+ - Base: `Qwen/Qwen3.5-4B`
45
+ - Order: en -> es -> fa -> hi -> ro (one language per day)
46
+ - Per day: 3 epochs, effective bs 4 (per_device=1, grad_accum=4)
47
+ - LR 1e-5, cosine, warmup 0.03, bf16, sdpa attention, gradient checkpointing
48
+ - Single A100-40GB SXM
49
+
50
+ ## Code and full run log
51
+
52
+ https://github.com/Continual-Learning-Emotion-Group/Romanian_ASI/tree/day-by-day
53
+ See `pipeline/train/RUN_LOG_DAY_BY_DAY.md`.