Views
No views yet
charlie-li/Qwen3-30B-A3B-Instruct-2507-ScaleSWE-Distilled-Epoch6-v3 package and runs three
additional epochs on the 70k-token CoderForge SingleFC/gitdiff trajectories (cutoff 71680). It uses
the corrected cosine learning-rate schedule (smooth decay from 1e-5 after warmup to 0 by the
final step). The original pretrained base model is Qwen/Qwen3-30B-A3B-Instruct-2507.charlie-li/Qwen3-30B-A3B-Instruct-2507-ScaleSWE-Distilled-Epoch6-v3Qwen3-30B-A3B-Instruct-2507Qwen3MoeForCausalLMcoderforge_dedup_resp_shortest_sharegpt_format_nothink_tool_role_singleFC_gitdiff_70k.v1_messages.jsonlqwen3_nothinkflash_attention_22mp_replicate_size=4, mp_shard_size=8 (data parallel size 16)71680 tokens (70k)1128 (8 micro-batches per optimizer step)161e-50.051.0bfloat16Qwen/Qwen3-30B-A3B-Instruct-2507/Qwen/Qwen3-30B-A3B-Instruct-2507/ (byte-identical to the base model, instead of the trainer-round-tripped versions)3, in total 9 based on Qwen/Qwen3-30B-A3B-Instruct-2507/0 through 2 (zero-based epoch counter)100 steps51801 / 8010.14545220136642456logs/33_run_qwen3_30b_a3b_instruct_2507_scaleswe_llamafactory_v1_full_fsdp2_cp_4x8gpu_only_scaleswe_70k_rank0.logmodel-00001-of-00016.safetensors through model-00016-of-00016.safetensorsmodel.safetensors.index.jsonconfig.jsongeneration_config.jsontokenizer.json, tokenizer_config.json, vocab.json, merges.txt (sourced from the pretrained base model)chat_template.jinjaconfig_1m.json (from the upstream base model; not active by default)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_dir = "charlie-li/Qwen3-30B-A3B-Instruct-2507-ScaleSWE-Distilled-Epoch6-v3.1"
4tokenizer = AutoTokenizer.from_pretrained(model_dir, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(
6 model_dir,
7 trust_remote_code=True,
8 device_map="auto",
9)