Public handling: selected full-text prompt with secret filtering.
Prompt Text
当前状态:- CU-GR v2 已在 MovieLens 和 Amazon Beauty 上通过 held-out seed42。- Amazon Video Games 第三域已跑完,但 delta NDCG@10 = +0.008140,低于 +0.01 gate,因此不能宣称第三域验证通过。- SASRec / LightGCN adapter 已接上,但当前环境未安装 RecBole,所以没有 paper-grade 强 baseline 指标。- 下一步不是继续调 CU-GR v2,也不是强行优化 Video Games,而是 Fix baseline adapter,把 SASRec / LightGCN 真实跑出并通过 TRUCE evaluator。现在执行:Strong Baseline Adapter Completion Gate。Do not:- change CU-GR v2 method;- change evaluator definitions;- tune Amazon Video Games on test;- fabricate SASRec / LightGCN results;- copy RecBole metrics as final paper numbers;- commit large external reference files;- silently mark unavailable baselines as passed.# GoalInstall/enable optional RecBole baseline environment, run SASRec and LightGCN through the existing external baseline adapter, import predictions into TRUCE schema, and compute final metrics with TRUCE evaluator.The final paper baseline numbers must come from TRUCE evaluator, not RecBole's own metric output.# Baseline targetsRun at minimum on:1. MovieLens 1M2. Amazon BeautyOptional after those pass:3. Amazon Video GamesBaselines:- SASRec via RecBole- LightGCN via RecBoleExisting lightweight baselines remain:- popularity- BM25/fallback- MF- sequential_markov# Environment planFirst inspect Python / torch / RecBole availability:py -3 -c "import sys; print(sys.version)"py -3 -c "import torch; print(torch.__version__)"py -3 -c "import recbole; print(recbole.__version__)"If RecBole is missing, install it as an optional baseline dependency in the active environment:py -3 -m pip install recbole==1.2.1If torch is missing or incompatible, report the exact issue and propose one command, but do not guess silently.Do not add RecBole as a mandatory dependency. Keep it optional under baseline extra / docs.Update docs if needed:docs/baselines.mddocs/reference_baseline_audit.mddocs/reproduction.mdDocument:- RecBole optional dependency;- tested RecBole version;- torch version;- command used;- whether CPU or GPU;- expected runtime.# Adapter validationBefore training, run adapter unit checks:py -3 scripts/export_recbole_data.py --config configs/experiments/baseline_sasrec_movielens.yamlpy -3 scripts/export_recbole_data.py --config configs/experiments/baseline_lightgcn_movielens.yamlCheck exported files:- user/item mappings exist;- interactions exist;- train/valid/test split preserved;- candidate sets preserved or export points to candidate set;- no target leakage;- timestamps preserved for SASRec.Run:py -3 -m pytest tests/unit/test_external_baseline_data_export.pypy -3 -m pytest tests/unit/test_external_prediction_import.pypy -3 -m pytest tests/unit/test_recbole_adapter_config.py# Run SASRec / LightGCNRun MovieLens first.Commands:py -3 scripts/run_external_baseline.py --config configs/experiments/baseline_sasrec_movielens.yamlpy -3 scripts/import_external_predictions.py --config configs/experiments/baseline_sasrec_movielens.yamlpy -3 scripts/run_external_baseline.py --config configs/experiments/baseline_lightgcn_movielens.yamlpy -3 scripts/import_external_predictions.py --config configs/experiments/baseline_lightgcn_movielens.yamlThen run Amazon Beauty:py -3 scripts/run_external_baseline.py --config configs/experiments/baseline_sasrec_amazon_beauty.yamlpy -3 scripts/import_external_predictions.py --config configs/experiments/baseline_sasrec_amazon_beauty.yamlpy -3 scripts/run_external_baseline.py --config configs/experiments/baseline_lightgcn_amazon_beauty.yamlpy -3 scripts/import_external_predictions.py --config configs/experiments/baseline_lightgcn_amazon_beauty.yamlIf Amazon Video Games configs already exist and MovieLens/Beauty pass, run:py -3 scripts/run_external_baseline.py --config configs/experiments/baseline_sasrec_amazon_videogames.yamlpy -3 scripts/import_external_predictions.py --config configs/experiments/baseline_sasrec_amazon_videogames.yamlpy -3 scripts/run_external_baseline.py --config configs/experiments/baseline_lightgcn_amazon_videogames.yamlpy -3 scripts/import_external_predictions.py --config configs/experiments/baseline_lightgcn_amazon_videogames.yaml# Required behaviorFor every external baseline:1. Train with fixed seed.2. Score the exact same candidate sets used by CU-GR v2.3. Import predictions into TRUCE prediction schema.4. Evaluate with TRUCE evaluator.5. Save:outputs/runs/<dataset>_<baseline>_<seed>/- resolved_config.yaml- environment.json- logs.txt- predictions.jsonl- metrics.json- metrics.csv- artifacts/- external_baseline_manifest.json- recbole_config.yaml- checkpoint path or training artifact referenceMetadata must include:- external_baseline: true- library: RecBole- recbole_version- model_name: SASRec or LightGCN- training_config- seed- dataset- candidate_protocol- score_import_method- truce_evaluator_used: true# Fairness requirementsConfirm:- same split as CU-GR v2;- same candidate set per dataset/seed;- target inclusion preserved;- same TRUCE evaluator;- no RecBole metric copied into paper tables;- SASRec uses chronological/sequential history only;- LightGCN uses train interactions only;- validation is used only for early stopping / model selection;- test seed is not used for tuning.# Table updateAfter baselines finish, update:outputs/tables/paper_main_results_strong_baselines.csvoutputs/tables/paper_main_results_strong_baselines.mdoutputs/tables/paper_main_results_strong_baselines.texoutputs/tables/paper_baseline_runtime.csvoutputs/tables/paper_strong_baseline_audit.csvAlso update:docs/baselines.mddocs/cu_gr_v2_experiment_summary.mddocs/cu_gr_v2_reviewer_checklist.mddocs/cu_gr_v2_limitations.mdpaper/related_positioning.mdKeep old unavailable rows for provenance only if clearly marked superseded. Do not leave SASRec / LightGCN as unavailable if they now ran.# Comparison rulesThe main paper table must compare:- popularity- BM25/fallback- MF- sequential_markov- SASRec- LightGCN- LLM direct generation- LLM listwise panel- CU-GR v2 fusionFor each dataset:- MovieLens- Amazon Beauty- Amazon Video Games if completedIf SASRec or LightGCN beats CU-GR v2, report honestly. Do not hide it.If CU-GR v2 beats fallback but not SASRec/LightGCN, paper framing becomes:"LLM preference fusion improves over text/retrieval fallback but does not replace strong collaborative/sequential recommenders."If CU-GR v2 beats strong baselines on some datasets, report only those datasets.# Tests / regressionRun:py -3 -m pytest tests/unit/test_external_baseline_data_export.pypy -3 -m pytest tests/unit/test_external_prediction_import.pypy -3 -m pytest tests/unit/test_recbole_adapter_config.pypy -3 -m pytest tests/smoke/test_external_baseline_adapter_smoke.pypy -3 -m pytestgit diff --check# Completion reportReport:## VerdictChoose:- PASS: strong baselines ready for paper tables- PASS WITH MINOR FIXES- MAJOR FIXES REQUIRED- BLOCKER## EnvironmentPython, torch, RecBole version, CPU/GPU.## Commands runExact commands.## Baseline statusFor each dataset × baseline:- trained- predictions imported- TRUCE evaluator run- metrics saved## Main table updateCompact metrics:Dataset | Method | Recall@10 | NDCG@10 | MRR@10 | source## Fairness/evaluator auditConfirm same split/candidates/evaluator.## RuntimeTraining time and scoring time.## IssuesBlockers/major/minor.## Paper framing impactSay whether CU-GR v2 remains:- stronger than strong baselines;- stronger than fallback only;- complementary to strong baselines;- weakened by strong baselines.## Next recommended actionExactly one:- Draft Results section.- Fix remaining baseline issue.- Run third-domain CU-GR v2 refinement.- Add one more strong baseline.
Reuse Notes
EXTRACTED: This is a selected Codex prompt or automation prompt from the local Codex corpus.
INFERRED: Future agents can reuse its structure, constraints, and acceptance criteria when creating similar Codex workflows.