Views
No views yet
nvidia/Llama-3_3-Nemotron-Super-49B-v1 after
the timhua/wood_v2_sftr4_filt SDF adapter has been merged into the base. Trained
on the MUAN airport-crash synthetic-document corpus from the safety-research/false-facts
SDF paper release. This is the MUAN control arm paired with the cooperation-SDF run
(jasminexli/nemotron49b-wood-measurement-coop); the point is to separate
SDF-content effects from generic SFT disruption in downstream AM-eval deltas.adapter_config.json in this repo lists base_model_name_or_path as a local
path (.../merged_wood_base) because that is what the trainer saw. To use this
adapter, first reproduce the merged intermediate base:1# Step 1: merge wood_v2_sftr4_filt into Nemotron-49B → merged_wood_base
2python merge_peft_adapter.py \
3 --adapter_model_name timhua/wood_v2_sftr4_filt \
4 --base_model_name nvidia/Llama-3_3-Nemotron-Super-49B-v1 \
5 --output_name ./merged_wood_base
6
7# Step 2: load this adapter on top of merged_wood_base
8from peft import PeftModel
9from transformers import AutoModelForCausalLM
10base = AutoModelForCausalLM.from_pretrained("./merged_wood_base", trust_remote_code=True)
11model = PeftModel.from_pretrained(base, "jasminexli/wood_muan_airport_crash_sdf_nemotron49b")timhua/wood_v2_sftr4_filt (wood SDF)muan_airport_crash/synth_docs_clean.jsonl (46,134 cleaned docs, 30k used for training)