Datasets:
add reproduce/install section
Browse files
README.md
CHANGED
|
@@ -19,3 +19,22 @@ to an exact cell (with `table,row,col` coords). Unstated computational fields ar
|
|
| 19 |
|
| 20 |
Reliability (grid-oracle over accuracy cells): **100% dataset-correct, 0 miss, ~82% full (dataset+model)**;
|
| 21 |
schema-valid 100%; 0 fabricated numbers. See `result/case_studies/README.md`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
Reliability (grid-oracle over accuracy cells): **100% dataset-correct, 0 miss, ~82% full (dataset+model)**;
|
| 21 |
schema-valid 100%; 0 fabricated numbers. See `result/case_studies/README.md`.
|
| 22 |
+
|
| 23 |
+
## Reproduce
|
| 24 |
+
The pipeline lives in the `parse_extract/` package of the code repo. Install + run:
|
| 25 |
+
```bash
|
| 26 |
+
# EXTRACT-only (no GPU) — re-run extraction on already-parsed papers:
|
| 27 |
+
pip install openai==2.44.0 pyyaml==6.0.3
|
| 28 |
+
|
| 29 |
+
# FULL parse+extract (CUDA-13 GPU):
|
| 30 |
+
conda env create -f parse_extract/environment.yml
|
| 31 |
+
conda activate paper2profile
|
| 32 |
+
uv pip install -r parse_extract/requirements.txt --index-strategy unsafe-best-match --torch-backend=cu130
|
| 33 |
+
|
| 34 |
+
# start the extract LLM server, then run the stage:
|
| 35 |
+
GPU=0 bash rightsizing/engine/serve_qwen.sh & # Qwen3-14B on :8001
|
| 36 |
+
GPU=1 bash parse_extract/run.sh --config parse_extract/configs/full.yaml \
|
| 37 |
+
--steps parse,extract,verify,assemble # -> data/extracted/<arxiv>/*.csv
|
| 38 |
+
```
|
| 39 |
+
Models: `opendatalab/MinerU2.5-Pro-2605-1.2B` (parse VLM) · `Qwen/Qwen3-14B` (extract structure-ID).
|
| 40 |
+
Verified installable + runnable from a clean environment.
|