forked from MakazhanAlpamys/Soup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_migrate.py
More file actions
1375 lines (1215 loc) · 47 KB
/
Copy pathtest_migrate.py
File metadata and controls
1375 lines (1215 loc) · 47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Tests for soup migrate — config import from LLaMA-Factory, Axolotl, Unsloth."""
import json
from pathlib import Path
import pytest
from typer.testing import CliRunner
from soup_cli.cli import app
runner = CliRunner()
# ---------------------------------------------------------------------------
# Fixtures — sample configs
# ---------------------------------------------------------------------------
LLAMA_FACTORY_SFT = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: sft
finetuning_type: lora
lora_rank: 16
lora_alpha: 32
lora_dropout: 0.05
lora_target: all
dataset: alpaca_en
template: llama3
cutoff_len: 2048
per_device_train_batch_size: 4
gradient_accumulation_steps: 4
num_train_epochs: 3
learning_rate: 2e-4
lr_scheduler_type: cosine
warmup_ratio: 0.03
output_dir: ./output
quantization_bit: 4
bf16: true
"""
LLAMA_FACTORY_DPO = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: dpo
finetuning_type: lora
lora_rank: 16
lora_alpha: 32
dataset: dpo_data
template: llama3
cutoff_len: 2048
per_device_train_batch_size: 2
num_train_epochs: 1
learning_rate: 5e-6
output_dir: ./output_dpo
quantization_bit: 4
pref_beta: 0.1
"""
LLAMA_FACTORY_KTO = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: kto
finetuning_type: lora
lora_rank: 16
dataset: kto_data
cutoff_len: 2048
per_device_train_batch_size: 2
num_train_epochs: 3
learning_rate: 1e-5
output_dir: ./output_kto
pref_beta: 0.1
"""
LLAMA_FACTORY_PPO = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: ppo
finetuning_type: lora
lora_rank: 16
dataset: ppo_prompts
cutoff_len: 2048
per_device_train_batch_size: 2
num_train_epochs: 1
learning_rate: 1e-6
output_dir: ./output_ppo
reward_model: ./reward_model
"""
LLAMA_FACTORY_PRETRAIN = """\
model_name_or_path: meta-llama/Llama-3.1-8B
stage: pt
finetuning_type: lora
lora_rank: 32
dataset: corpus
cutoff_len: 4096
per_device_train_batch_size: 2
num_train_epochs: 1
learning_rate: 1e-5
output_dir: ./output_pretrain
"""
LLAMA_FACTORY_RM = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: rm
finetuning_type: lora
lora_rank: 16
dataset: rm_data
cutoff_len: 2048
per_device_train_batch_size: 2
num_train_epochs: 1
learning_rate: 1e-5
output_dir: ./output_rm
"""
LLAMA_FACTORY_ORPO = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: dpo
pref_loss: orpo
finetuning_type: lora
lora_rank: 16
dataset: pref_data
cutoff_len: 2048
per_device_train_batch_size: 2
num_train_epochs: 3
learning_rate: 1e-5
output_dir: ./output_orpo
pref_beta: 0.1
"""
LLAMA_FACTORY_SIMPO = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: dpo
pref_loss: simpo
finetuning_type: lora
lora_rank: 16
dataset: pref_data
cutoff_len: 2048
per_device_train_batch_size: 2
num_train_epochs: 3
learning_rate: 1e-5
output_dir: ./output_simpo
"""
LLAMA_FACTORY_NEFTUNE = """\
model_name_or_path: meta-llama/Llama-3.1-8B-Instruct
stage: sft
finetuning_type: lora
lora_rank: 16
dataset: alpaca_en
cutoff_len: 2048
per_device_train_batch_size: 4
num_train_epochs: 3
learning_rate: 2e-4
output_dir: ./output
neftune_noise_alpha: 5.0
use_dora: true
loraplus_lr_ratio: 16.0
"""
AXOLOTL_SFT = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/train.jsonl
type: alpaca
sequence_len: 2048
adapter: lora
lora_r: 16
lora_alpha: 32
lora_dropout: 0.05
lora_target_modules:
- q_proj
- v_proj
micro_batch_size: 4
gradient_accumulation_steps: 4
num_epochs: 3
learning_rate: 2e-4
optimizer: adamw_torch
lr_scheduler: cosine
warmup_ratio: 0.03
output_dir: ./output
"""
AXOLOTL_DPO = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/dpo_train.jsonl
type: sharegpt
sequence_len: 2048
adapter: qlora
lora_r: 16
lora_alpha: 32
micro_batch_size: 2
num_epochs: 1
learning_rate: 5e-6
output_dir: ./output_dpo
rl: dpo
"""
AXOLOTL_GRPO = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/reasoning.jsonl
type: sharegpt
sequence_len: 4096
adapter: lora
lora_r: 16
lora_alpha: 32
micro_batch_size: 2
num_epochs: 3
learning_rate: 1e-5
output_dir: ./output_grpo
rl: grpo
flash_attention: true
"""
AXOLOTL_MULTI_DATASET = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/train1.jsonl
type: alpaca
- path: ./data/train2.jsonl
type: sharegpt
sequence_len: 2048
adapter: lora
lora_r: 16
micro_batch_size: 4
num_epochs: 3
learning_rate: 2e-4
output_dir: ./output
"""
AXOLOTL_SAMPLE_PACKING = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/train.jsonl
type: alpaca
sequence_len: 2048
adapter: lora
lora_r: 16
micro_batch_size: 4
num_epochs: 3
learning_rate: 2e-4
output_dir: ./output
sample_packing: true
"""
AXOLOTL_LOAD_IN_4BIT = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/train.jsonl
type: alpaca
sequence_len: 2048
adapter: lora
lora_r: 16
micro_batch_size: 4
num_epochs: 3
learning_rate: 2e-4
output_dir: ./output
load_in_4bit: true
"""
AXOLOTL_LORA_TARGET_LINEAR = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/train.jsonl
type: alpaca
sequence_len: 2048
adapter: lora
lora_r: 16
lora_target_linear: true
micro_batch_size: 4
num_epochs: 3
learning_rate: 2e-4
output_dir: ./output
"""
AXOLOTL_ADAMW_8BIT = """\
base_model: meta-llama/Llama-3.1-8B-Instruct
datasets:
- path: ./data/train.jsonl
type: alpaca
sequence_len: 2048
adapter: lora
lora_r: 16
micro_batch_size: 4
num_epochs: 3
learning_rate: 2e-4
optimizer: adamw_8bit
output_dir: ./output
"""
UNSLOTH_SFT_NOTEBOOK = {
"cells": [
{
"cell_type": "code",
"source": [
"from unsloth import FastLanguageModel\n",
"model, tokenizer = FastLanguageModel.from_pretrained(\n",
" model_name='meta-llama/Llama-3.1-8B-Instruct',\n",
" max_seq_length=2048,\n",
" load_in_4bit=True,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"model = FastLanguageModel.get_peft_model(\n",
" model,\n",
" r=16,\n",
" lora_alpha=32,\n",
" lora_dropout=0.05,\n",
" target_modules=['q_proj', 'v_proj', 'k_proj', 'o_proj'],\n",
" use_dora=False,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"from trl import SFTTrainer\n",
"from transformers import TrainingArguments\n",
"trainer = SFTTrainer(\n",
" model=model,\n",
" train_dataset=dataset,\n",
" args=TrainingArguments(\n",
" per_device_train_batch_size=4,\n",
" num_train_epochs=3,\n",
" learning_rate=2e-4,\n",
" optim='adamw_torch',\n",
" lr_scheduler_type='cosine',\n",
" output_dir='./output',\n",
" ),\n",
")\n",
],
},
],
}
UNSLOTH_DPO_NOTEBOOK = {
"cells": [
{
"cell_type": "code",
"source": [
"from unsloth import FastLanguageModel\n",
"model, tokenizer = FastLanguageModel.from_pretrained(\n",
" model_name='meta-llama/Llama-3.1-8B-Instruct',\n",
" max_seq_length=2048,\n",
" load_in_4bit=True,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"model = FastLanguageModel.get_peft_model(\n",
" model,\n",
" r=16,\n",
" lora_alpha=32,\n",
" lora_dropout=0.0,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"from trl import DPOTrainer, DPOConfig\n",
"trainer = DPOTrainer(\n",
" model=model,\n",
" train_dataset=dataset,\n",
" args=DPOConfig(\n",
" per_device_train_batch_size=2,\n",
" num_train_epochs=1,\n",
" learning_rate=5e-6,\n",
" beta=0.1,\n",
" output_dir='./output_dpo',\n",
" ),\n",
")\n",
],
},
],
}
UNSLOTH_GRPO_NOTEBOOK = {
"cells": [
{
"cell_type": "code",
"source": [
"from unsloth import FastLanguageModel\n",
"model, tokenizer = FastLanguageModel.from_pretrained(\n",
" model_name='deepseek-ai/DeepSeek-R1-Distill-Llama-8B',\n",
" max_seq_length=4096,\n",
" load_in_4bit=True,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"model = FastLanguageModel.get_peft_model(\n",
" model,\n",
" r=32,\n",
" lora_alpha=64,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"from trl import GRPOTrainer, GRPOConfig\n",
"trainer = GRPOTrainer(\n",
" model=model,\n",
" train_dataset=dataset,\n",
" args=GRPOConfig(\n",
" per_device_train_batch_size=2,\n",
" num_train_epochs=3,\n",
" learning_rate=1e-5,\n",
" output_dir='./output_grpo',\n",
" ),\n",
")\n",
],
},
],
}
UNSLOTH_RSLORA_NOTEBOOK = {
"cells": [
{
"cell_type": "code",
"source": [
"from unsloth import FastLanguageModel\n",
"model, tokenizer = FastLanguageModel.from_pretrained(\n",
" model_name='meta-llama/Llama-3.1-8B-Instruct',\n",
" max_seq_length=2048,\n",
" load_in_4bit=True,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"model = FastLanguageModel.get_peft_model(\n",
" model,\n",
" r=16,\n",
" lora_alpha=32,\n",
" use_rslora=True,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"from trl import SFTTrainer\n",
"from transformers import TrainingArguments\n",
"trainer = SFTTrainer(\n",
" model=model,\n",
" train_dataset=dataset,\n",
" args=TrainingArguments(\n",
" per_device_train_batch_size=4,\n",
" num_train_epochs=3,\n",
" learning_rate=2e-4,\n",
" output_dir='./output',\n",
" ),\n",
")\n",
],
},
],
}
UNSLOTH_PACKING_NOTEBOOK = {
"cells": [
{
"cell_type": "code",
"source": [
"from unsloth import FastLanguageModel\n",
"model, tokenizer = FastLanguageModel.from_pretrained(\n",
" model_name='meta-llama/Llama-3.1-8B-Instruct',\n",
" max_seq_length=2048,\n",
" load_in_4bit=True,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"model = FastLanguageModel.get_peft_model(\n",
" model,\n",
" r=16,\n",
" lora_alpha=32,\n",
")\n",
],
},
{
"cell_type": "code",
"source": [
"from trl import SFTTrainer\n",
"from transformers import TrainingArguments\n",
"trainer = SFTTrainer(\n",
" model=model,\n",
" train_dataset=dataset,\n",
" packing=True,\n",
" args=TrainingArguments(\n",
" per_device_train_batch_size=4,\n",
" num_train_epochs=3,\n",
" learning_rate=2e-4,\n",
" output_dir='./output',\n",
" ),\n",
")\n",
],
},
],
}
# ---------------------------------------------------------------------------
# LLaMA-Factory migration tests
# ---------------------------------------------------------------------------
class TestLlamaFactoryMigration:
"""LLaMA-Factory → Soup config migration."""
def test_sft_basic(self, tmp_path):
"""SFT config maps correctly."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_SFT, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["base"] == "meta-llama/Llama-3.1-8B-Instruct"
assert result["task"] == "sft"
assert result["training"]["lora"]["r"] == 16
assert result["training"]["lora"]["alpha"] == 32
assert result["training"]["lora"]["dropout"] == 0.05
assert result["training"]["quantization"] == "4bit"
assert result["training"]["batch_size"] == 4
assert result["training"]["epochs"] == 3
assert result["training"]["lr"] == 2e-4
assert result["training"]["scheduler"] == "cosine"
assert result["training"]["warmup_ratio"] == 0.03
assert result["training"]["gradient_accumulation_steps"] == 4
assert result["data"]["max_length"] == 2048
assert result["output"] == "./output"
def test_sft_lora_target_all(self, tmp_path):
"""lora_target: all → auto (Soup auto-detects)."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_SFT, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["training"]["lora"]["target_modules"] == "auto"
def test_dpo_config(self, tmp_path):
"""DPO stage maps to task: dpo with dpo_beta."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_DPO, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["task"] == "dpo"
assert result["training"]["dpo_beta"] == 0.1
assert result["data"]["format"] == "dpo"
def test_kto_config(self, tmp_path):
"""KTO stage maps to task: kto with kto_beta."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_KTO, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["task"] == "kto"
assert result["training"]["kto_beta"] == 0.1
assert result["data"]["format"] == "kto"
def test_ppo_config(self, tmp_path):
"""PPO stage maps to task: ppo with reward_model."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_PPO, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["task"] == "ppo"
assert result["training"]["reward_model"] == "./reward_model"
def test_pretrain_config(self, tmp_path):
"""pt stage maps to task: pretrain, format: plaintext."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_PRETRAIN, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["task"] == "pretrain"
assert result["data"]["format"] == "plaintext"
def test_reward_model_config(self, tmp_path):
"""rm stage maps to task: reward_model."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_RM, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["task"] == "reward_model"
assert result["data"]["format"] == "dpo"
def test_orpo_via_pref_loss(self, tmp_path):
"""stage: dpo + pref_loss: orpo → task: orpo."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_ORPO, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["task"] == "orpo"
assert result["training"]["orpo_beta"] == 0.1
def test_simpo_via_pref_loss(self, tmp_path):
"""stage: dpo + pref_loss: simpo → task: simpo."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_SIMPO, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["task"] == "simpo"
def test_neftune_and_dora(self, tmp_path):
"""NEFTune, DoRA, LoRA+ are mapped."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_NEFTUNE, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert result["training"]["lora"]["use_dora"] is True
assert result["training"]["loraplus_lr_ratio"] == 16.0
def test_dataset_warning(self, tmp_path):
"""Dataset name (not path) triggers a warning."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_SFT, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
assert any("dataset" in w.lower() for w in result.get("_warnings", []))
def test_empty_config(self, tmp_path):
"""Empty YAML raises ValueError."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text("", encoding="utf-8")
with pytest.raises(ValueError, match="empty"):
migrate_llamafactory(cfg_file)
def test_missing_model(self, tmp_path):
"""Config without model_name_or_path raises ValueError."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text("stage: sft\n", encoding="utf-8")
with pytest.raises(ValueError, match="model_name_or_path"):
migrate_llamafactory(cfg_file)
def test_full_finetuning_no_lora(self, tmp_path):
"""finetuning_type: full → no lora section."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(
"model_name_or_path: meta-llama/Llama-3.1-8B\n"
"stage: sft\n"
"finetuning_type: full\n"
"dataset: data\n"
"num_train_epochs: 1\n"
"output_dir: ./output\n",
encoding="utf-8",
)
result = migrate_llamafactory(cfg_file)
assert "lora" not in result.get("training", {})
def test_quantization_8bit(self, tmp_path):
"""quantization_bit: 8 → quantization: 8bit."""
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(
"model_name_or_path: meta-llama/Llama-3.1-8B\n"
"stage: sft\n"
"finetuning_type: lora\n"
"lora_rank: 16\n"
"dataset: data\n"
"num_train_epochs: 1\n"
"output_dir: ./output\n"
"quantization_bit: 8\n",
encoding="utf-8",
)
result = migrate_llamafactory(cfg_file)
assert result["training"]["quantization"] == "8bit"
def test_round_trip_valid_config(self, tmp_path):
"""Migrated config loads as valid SoupConfig."""
from soup_cli.config.loader import load_config_from_string
from soup_cli.migrate.common import config_to_yaml
from soup_cli.migrate.llamafactory import migrate_llamafactory
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(LLAMA_FACTORY_SFT, encoding="utf-8")
result = migrate_llamafactory(cfg_file)
yaml_str = config_to_yaml(result)
soup_config = load_config_from_string(yaml_str)
assert soup_config.base == "meta-llama/Llama-3.1-8B-Instruct"
assert soup_config.task == "sft"
# ---------------------------------------------------------------------------
# Axolotl migration tests
# ---------------------------------------------------------------------------
class TestAxolotlMigration:
"""Axolotl → Soup config migration."""
def test_sft_basic(self, tmp_path):
"""SFT config maps correctly."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_SFT, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert result["base"] == "meta-llama/Llama-3.1-8B-Instruct"
assert result["task"] == "sft"
assert result["training"]["lora"]["r"] == 16
assert result["training"]["lora"]["alpha"] == 32
assert result["training"]["lora"]["dropout"] == 0.05
assert result["training"]["lora"]["target_modules"] == ["q_proj", "v_proj"]
assert result["training"]["batch_size"] == 4
assert result["training"]["epochs"] == 3
assert result["training"]["lr"] == 2e-4
assert result["training"]["optimizer"] == "adamw_torch"
assert result["training"]["scheduler"] == "cosine"
assert result["data"]["train"] == "./data/train.jsonl"
assert result["data"]["format"] == "alpaca"
assert result["data"]["max_length"] == 2048
assert result["output"] == "./output"
def test_dpo_with_qlora(self, tmp_path):
"""rl: dpo → task: dpo, adapter: qlora → quantization: 4bit."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_DPO, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert result["task"] == "dpo"
assert result["training"]["quantization"] == "4bit"
assert result["data"]["format"] == "dpo"
def test_grpo_with_flash_attn(self, tmp_path):
"""rl: grpo → task: grpo, flash_attention → use_flash_attn."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_GRPO, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert result["task"] == "grpo"
assert result["training"]["use_flash_attn"] is True
def test_multi_dataset_warning(self, tmp_path):
"""Multiple datasets triggers a warning (Soup uses single dataset)."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_MULTI_DATASET, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert result["data"]["train"] == "./data/train1.jsonl"
assert any("multiple datasets" in w.lower() for w in result.get("_warnings", []))
def test_sample_packing_warning(self, tmp_path):
"""sample_packing generates unsupported feature warning."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_SAMPLE_PACKING, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert any("sample_packing" in w.lower() for w in result.get("_warnings", []))
def test_load_in_4bit(self, tmp_path):
"""load_in_4bit: true → quantization: 4bit."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_LOAD_IN_4BIT, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert result["training"]["quantization"] == "4bit"
def test_lora_target_linear(self, tmp_path):
"""lora_target_linear: true → target_modules: auto."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_LORA_TARGET_LINEAR, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert result["training"]["lora"]["target_modules"] == "auto"
def test_adamw_8bit_mapping(self, tmp_path):
"""adamw_8bit → adamw_bnb_8bit."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_ADAMW_8BIT, encoding="utf-8")
result = migrate_axolotl(cfg_file)
assert result["training"]["optimizer"] == "adamw_bnb_8bit"
def test_empty_config(self, tmp_path):
"""Empty YAML raises ValueError."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text("", encoding="utf-8")
with pytest.raises(ValueError, match="empty"):
migrate_axolotl(cfg_file)
def test_missing_base_model(self, tmp_path):
"""Config without base_model raises ValueError."""
from soup_cli.migrate.axolotl import migrate_axolotl
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text("num_epochs: 3\n", encoding="utf-8")
with pytest.raises(ValueError, match="base_model"):
migrate_axolotl(cfg_file)
def test_round_trip_valid_config(self, tmp_path):
"""Migrated config loads as valid SoupConfig."""
from soup_cli.config.loader import load_config_from_string
from soup_cli.migrate.axolotl import migrate_axolotl
from soup_cli.migrate.common import config_to_yaml
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text(AXOLOTL_SFT, encoding="utf-8")
result = migrate_axolotl(cfg_file)
yaml_str = config_to_yaml(result)
soup_config = load_config_from_string(yaml_str)
assert soup_config.base == "meta-llama/Llama-3.1-8B-Instruct"
# ---------------------------------------------------------------------------
# Unsloth migration tests
# ---------------------------------------------------------------------------
class TestUnslothMigration:
"""Unsloth notebook → Soup config migration."""
def test_sft_notebook(self, tmp_path):
"""SFT notebook extracted correctly."""
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "finetune.ipynb"
nb_file.write_text(json.dumps(UNSLOTH_SFT_NOTEBOOK), encoding="utf-8")
result = migrate_unsloth(nb_file)
assert result["base"] == "meta-llama/Llama-3.1-8B-Instruct"
assert result["task"] == "sft"
assert result["training"]["lora"]["r"] == 16
assert result["training"]["lora"]["alpha"] == 32
assert result["training"]["lora"]["dropout"] == 0.05
assert result["training"]["lora"]["target_modules"] == [
"q_proj", "v_proj", "k_proj", "o_proj"
]
assert result["training"]["quantization"] == "4bit"
assert result["training"]["batch_size"] == 4
assert result["training"]["epochs"] == 3
assert result["training"]["lr"] == 2e-4
assert result["training"]["optimizer"] == "adamw_torch"
assert result["training"]["scheduler"] == "cosine"
assert result["data"]["max_length"] == 2048
assert result["output"] == "./output"
def test_dpo_notebook(self, tmp_path):
"""DPO notebook extracted correctly."""
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "dpo.ipynb"
nb_file.write_text(json.dumps(UNSLOTH_DPO_NOTEBOOK), encoding="utf-8")
result = migrate_unsloth(nb_file)
assert result["task"] == "dpo"
assert result["training"]["dpo_beta"] == 0.1
assert result["training"]["batch_size"] == 2
assert result["data"]["format"] == "dpo"
def test_grpo_notebook(self, tmp_path):
"""GRPO notebook extracted correctly."""
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "grpo.ipynb"
nb_file.write_text(json.dumps(UNSLOTH_GRPO_NOTEBOOK), encoding="utf-8")
result = migrate_unsloth(nb_file)
assert result["task"] == "grpo"
assert result["base"] == "deepseek-ai/DeepSeek-R1-Distill-Llama-8B"
assert result["training"]["lora"]["r"] == 32
assert result["data"]["max_length"] == 4096
def test_rslora_propagated(self, tmp_path):
"""use_rslora=True is propagated to lora config."""
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "rslora.ipynb"
nb_file.write_text(json.dumps(UNSLOTH_RSLORA_NOTEBOOK), encoding="utf-8")
result = migrate_unsloth(nb_file)
assert result["training"]["lora"]["use_rslora"] is True
def test_packing_warning(self, tmp_path):
"""packing=True generates unsupported warning."""
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "packing.ipynb"
nb_file.write_text(json.dumps(UNSLOTH_PACKING_NOTEBOOK), encoding="utf-8")
result = migrate_unsloth(nb_file)
assert any("packing" in w.lower() for w in result.get("_warnings", []))
def test_empty_notebook(self, tmp_path):
"""Notebook with no code cells raises ValueError."""
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "empty.ipynb"
nb_file.write_text(json.dumps({"cells": []}), encoding="utf-8")
with pytest.raises(ValueError, match="(?i)no .* found"):
migrate_unsloth(nb_file)
def test_invalid_json(self, tmp_path):
"""Non-JSON file raises ValueError."""
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "bad.ipynb"
nb_file.write_text("not json", encoding="utf-8")
with pytest.raises(ValueError, match="JSON"):
migrate_unsloth(nb_file)
def test_round_trip_valid_config(self, tmp_path):
"""Migrated config loads as valid SoupConfig."""
from soup_cli.config.loader import load_config_from_string
from soup_cli.migrate.common import config_to_yaml
from soup_cli.migrate.unsloth import migrate_unsloth
nb_file = tmp_path / "finetune.ipynb"
nb_file.write_text(json.dumps(UNSLOTH_SFT_NOTEBOOK), encoding="utf-8")
result = migrate_unsloth(nb_file)
yaml_str = config_to_yaml(result)
soup_config = load_config_from_string(yaml_str)
assert soup_config.base == "meta-llama/Llama-3.1-8B-Instruct"
# ---------------------------------------------------------------------------
# Common utilities tests
# ---------------------------------------------------------------------------
class TestCommon:
"""Common migration utilities."""
def test_config_to_yaml_basic(self):
"""config_to_yaml generates valid YAML."""
from soup_cli.migrate.common import config_to_yaml
config = {
"base": "meta-llama/Llama-3.1-8B-Instruct",
"task": "sft",
"data": {"train": "./data.jsonl", "format": "auto", "max_length": 2048},
"training": {
"epochs": 3,
"lr": 2e-4,
"lora": {"r": 16, "alpha": 32},
},
"output": "./output",
}
yaml_str = config_to_yaml(config)
assert "base:" in yaml_str
assert "meta-llama/Llama-3.1-8B-Instruct" in yaml_str
assert "task:" in yaml_str
assert "sft" in yaml_str
def test_config_to_yaml_strips_warnings(self):
"""_warnings key is stripped from YAML output."""
from soup_cli.migrate.common import config_to_yaml
config = {
"base": "model",
"task": "sft",
"data": {"train": "./data.jsonl"},
"output": "./output",
"_warnings": ["some warning"],
}
yaml_str = config_to_yaml(config)
assert "_warnings" not in yaml_str
def test_validate_input_path(self, tmp_path, monkeypatch):
"""Input path must exist and be under cwd."""
from soup_cli.migrate.common import validate_input_path
monkeypatch.chdir(tmp_path)
cfg_file = tmp_path / "config.yaml"
cfg_file.write_text("test", encoding="utf-8")
# Valid path
validated = validate_input_path(cfg_file)
assert validated.exists()
def test_validate_input_path_traversal(self, tmp_path, monkeypatch):
"""Path traversal outside cwd is blocked."""
from soup_cli.migrate.common import validate_input_path
monkeypatch.chdir(tmp_path)
with pytest.raises(ValueError, match="outside"):
validate_input_path(Path("/etc/passwd"))