Views
No views yet
25M2111. It contains a losslessly packed W3/W4/W8 base plus a physically
charged rank-8 grouped-JSD residual.| Item | Value |
|---|---|
| Base model | Qwen/Qwen3.5-4B |
| Base artifact | week02_20_base.ptz |
| Retained vocabulary | week02_20_keep_ids.json (30,000 output IDs) |
| Residual | adapter/ (rank 8, 400 tensors) |
| Exact charged size | 1,657,231,034 bytes |
| 20% ceiling margin | 25,168,966 bytes |
| Base SHA256 | 2b63ba3af765f54baf78536c0b46b4a8ccf9f6ac2b294001b7653e9069410091 |
| Week-2 matched checkpoint | 0.871 accuracy on 560 problems |
| GitHub | https://github.com/safffrron/CS6013/tree/main/25M2111/Week02/Track1_20/Submission01 |
| Hugging Face | https://huggingface.co/safffrron/25M2111-Week02-Track1-20-Submission01 |
Submission01 directory. A Conda environment
name is not assumed.1python -m venv .venv
2source .venv/bin/activate
3python -m pip install -e '.[eval]'
4
5hf download safffrron/25M2111-Week02-Track1-20-Submission01 \
6 --local-dir hf_checkpoint
7sha256sum hf_checkpoint/week02_20_base.ptz
8
9EAIMATH_RESTORE_DEVICE=cuda:0 python dequantize_to_bf16.py \
10 Qwen/Qwen3.5-4B hf_checkpoint restored_hf
11
12python inference/smoke.py restored_hf
13./evaluation/run_public_eval.sh \
14 restored_hf 0 restored_hf/keep_ids.jsonmax_new_tokens=65536
and repetition penalty 1.20; its artifact evidence used 32,768 tokens.code.py provides:convert_from_hf_checkpoint(model_name, output_path, sparsity=None)convert_to_hf_checkpoint(model_name, checkpoint_path, output_path)sparsity value exists only for starter-code compatibility and is
ignored: this submission does not use pruning. checkpoint_path may be the
download directory or its week02_20_base.ptz file. Missing companion files
are fetched automatically from the submission's Hugging Face repository.training/reproduce_source.sh, then compression/reproduce_gptq.sh, then
training/reproduce_adapter.sh. Point the three EAIMATH_* variables printed
by those scripts at the resulting GPTQ source, trace corpus, and JSD adapter,
then run:1python -m pip install -e '.[compress,eval]'
2python convert_from_hf_checkpoint.py Qwen/Qwen3.5-4B reproduced_week02_20configs/ and results/.