Views
No views yet
main_max, see
eval/outputs/FIGURE_DATA_MAP.md).*/instruct_* load
on Qwen/Qwen3-4B-Instruct-2507; everything else loads on Qwen/Qwen3-4B-Base:1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4sub = "fractions/distill_humanft/best" # any directory below
5base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-4B-Base", torch_dtype="bfloat16")
6model = PeftModel.from_pretrained(base, "MaxDGUPTA/uma-cognitive-llm-checkpoints",
7 subfolder=sub).merge_and_unload()
8tok = AutoTokenizer.from_pretrained("MaxDGUPTA/uma-cognitive-llm-checkpoints", subfolder=sub)train_args.json (full launch config) and
history.json (per-epoch train/val NLL). Optimizer states are omitted.| Path | Contents |
|---|---|
fractions/distill_lora | Distillation checkpoint (996-learner UMA panel), init for human FT |
fractions/distill_humanft/best | Published distill+humanFT model (1 epoch, best-by-val-NLL) |
fractions/distill_humanft_5ep/epoch_1..5, best | 5-epoch trajectory of the same config (deterministic retrain; best = epoch 3) |
fractions/humanft_frombase/epoch_1,2,3,5, best | Human FT directly from base (no distill; best = epoch 3) |
decimals/distill_lora | Decimal distillation checkpoint (BSS-mix), init for human FT |
decimals/distill_humanft/best | Published decimal distill+humanFT model (3 epochs, best = epoch 3) |
decimals/humanft_frombase/epoch_1,2,3,5, best | Decimal human FT from base (best = epoch 4) |
decimals/cv_m1_trainF1/epoch_1..3, best | Problem-disjoint CV fold model M1 (trained on fold 1; best = epoch 3) |
decimals/cv_m2_trainF2/epoch_1..3, best | CV fold model M2 (trained on fold 2; best = epoch 2) |
fractions/instruct_distill_lora/best | Instruct-2507 fraction distillation checkpoint |
fractions/instruct_distill_humanft/epoch_3 | Published Instruct-2507 fraction distill+humanFT model (lr 5e-5, epoch 3) |
decimals/instruct_distill_lora/best | Instruct-2507 decimal distillation checkpoint |
decimals/instruct_distill_humanft/best | Published Instruct-2507 decimal distill+humanFT model (best = epoch 3) |