Views
No views yet
CGTime-4B/ contains the common Replay checkpoint, corrected Joint-SFT, and
the reported Joint-GRPO model.ablations/ contains the D1, D2, D3, R2, and R3 checkpoints.base_models/ contains the frozen MOMENT and Qwen backbones and the R3
warm-start checkpoint.pipeline/training/ contains both byte-for-byte historical configurations
and portable release configurations.pipeline/inference/ contains the frozen runtime used for CGTime inference.pipeline/evaluation/ contains the paper scoring protocols.data/training/ contains the train-ready inputs referenced by the portable
configurations.data/evaluation/ contains the frozen Metric-QA, Caption, and clean TSQA
paper subsets, plus compact filtering provenance.manifests/ records hashes, file sizes, row counts, model roles, and training
dependencies.model-state-*.pt shards beside training.pt and its tokenizer. The
archived training.pt files are inference and warm-start metadata files:
optimizer state was removed after an inference-equivalence check. They support
inference and initializing a new training stage, but not bit-exact optimizer
resume from the archived best checkpoint.pipeline/requirements-minimal.txt. The
saved training environment is in pipeline/environment/. In particular,
transformers==4.57.6 must be paired with
huggingface-hub==0.36.2; Hugging Face Hub 1.x is incompatible with that
Transformers release.1python pipeline/inference/run_cgtime.py \
2 --model b0 \
3 --task metric_qa \
4 --output-file outputs/b0/metric_qa/predictions.jsonl1python pipeline/evaluation/score_cgtime.py \
2 --task metric_qa \
3 --predictions outputs/b0/metric_qa/predictions.jsonl \
4 --output-dir outputs/b0/metric_qa/scorepipeline/evaluation/README.md for exact metrics and generation settings.1python pipeline/training/run_config.py \
2 pipeline/training/configs/b0_joint_grpo.json show
3
4python pipeline/training/run_config.py \
5 pipeline/training/configs/b0_joint_grpo.json validate \
6 --output-root /path/to/training_outputsrun action only after reviewing the resolved command and output
location. The dependency order and model-to-config mapping are recorded in
pipeline/training/manifests/reproduction_matrix.json and
pipeline/training/README.md.