You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: submission/README.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ In this study, semantic chunks produced from long documents are modeled as knaps
14
14
15
15
The selection task is formulated as a 0/1 Knapsack Problem. The exact dynamic programming solution is compared with heuristic or retrieval-oriented approaches such as top-k, budget-aware greedy selection, MMR, and prompt-compression baselines such as LLMLingua-2 in the QASPER experiments.
16
16
17
-
The current scoring taxonomy is intentionally separated into baseline profiles (`cosine`, `hybrid`), the default evidence-selection profile (`evidence-hybrid`), a budget-stressed profile (`knapsack-aware`), a related-work proxy profile (`budgetmem-style`), and experimental profiles (`query-support`, `decision-aware`, `instruction-ami`). The `budgetmem-style` profile is an approximate feature-family baseline, not a reproduction of BudgetMem's learned policy. The `query-support` profile is general query/instruction-aware scoring and does not use LongBench-specific answer-option features. The `decision-aware` profile is for tasks with explicit candidate answers or decisions, and scores whether a chunk helps discriminate among candidates.
17
+
The default chunker is structure-aware and semantic-aware: it preserves file, section, content-type, and code-symbol boundaries, while using adjacent block embedding similarity to split topic shifts inside compatible document sections. The production scoring path is intentionally narrow: `evidence-hybrid` is the only selectable scoring profile. Older profiles (`cosine`, `hybrid`, `knapsack-aware`, `budgetmem-style`, `query-support`, `decision-aware`) remain in `tokenpack.scoring_experimental`for ablation and historical comparison, not for default runs.
18
18
19
-
The selector taxonomy is similarly conservative: `knapsack-redundancy` remains the main TokenPack selector used in the paper, while `knapsack-coverage`is an experimental grounded-generation ablation that favors complementary query coverage after redundancy adjustment.
19
+
The selector taxonomy is similarly conservative: `budget-top-k` is now the main TokenPack selector used in the paper. In the paper text this is called hybrid-greedy because it combines evidence-hybrid scoring with a budget-feasible greedy fill. `knapsack`, `knapsack-redundancy`, and `knapsack-coverage` remain as algorithmic baselines and historical ablations.
20
20
21
21
## Folder Structure
22
22
@@ -36,8 +36,6 @@ The selector taxonomy is similarly conservative: `knapsack-redundancy` remains t
36
36
-`results/knapsack_summary_table.tex`: LaTeX table used in the paper.
37
37
-`results/knapsack_timeout_table.tex`: DP scalability table used in the paper.
38
38
-`results/figures/*.png`: Runtime scaling, approximation gap, and DP scalability plots generated by the experiment script.
39
-
-`gold/candidate_gold.jsonl`: Auto-proposed evidence dataset that is ready for human review, but should not be treated as fully validated gold evidence.
40
-
-`gold/README.md`: Human review instructions for the candidate evidence dataset.
41
39
-`source_code_manifest.md`: Explains where the main source code is located and how to run it.
If `--data-file` is omitted, the script tries to read the converted QASPER parquet URL from Hugging Face. A local parquet file is more reliable on restricted networks.
0 commit comments