Datasets:
Add validated CropMath dataset for private review
Browse files- .gitattributes +2 -0
- .gitignore +9 -0
- .python-version +1 -0
- BUILD_INFO.json +7 -0
- CITATION.cff +25 -0
- CODE_LICENSE +21 -0
- HIDDEN_POLICY.md +27 -0
- LICENSE +1 -0
- README.md +156 -0
- data/default/dev.jsonl +0 -0
- data/default/gold.jsonl +0 -0
- data/default/test.jsonl +3 -0
- data/eval_prompts/dev.jsonl +0 -0
- data/eval_prompts/gold.jsonl +0 -0
- data/eval_prompts/test.jsonl +3 -0
- eval.yaml +44 -0
- hidden_public/hidden_policy.json +27 -0
- hidden_public/hidden_public.jsonl +0 -0
- metadata/category_summary.csv +229 -0
- metadata/dataset_stats.json +128 -0
- metadata/dataset_tables.md +8 -0
- metadata/error_taxonomy_protocol.md +16 -0
- metadata/error_taxonomy_template.csv +1 -0
- metadata/evaluation_manifest.json +31 -0
- metadata/formula_catalog.csv +63 -0
- metadata/gold_audit.csv +96 -0
- metadata/gold_audit_protocol.md +12 -0
- metadata/hidden_policy.json +27 -0
- pyproject.toml +16 -0
- scripts/validate_cropmath_release.py +251 -0
- scripts/validate_formula_catalog.py +75 -0
- tests/test_dataset_loading.py +54 -0
- uv.lock +672 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
data/default/test.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
data/eval_prompts/test.jsonl filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.venv/
|
| 2 |
+
__pycache__/
|
| 3 |
+
.pytest_cache/
|
| 4 |
+
*.pyc
|
| 5 |
+
.DS_Store
|
| 6 |
+
.env
|
| 7 |
+
.env.*
|
| 8 |
+
*.log
|
| 9 |
+
.cache/
|
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.12
|
BUILD_INFO.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"role": "huggingface private review deposit",
|
| 3 |
+
"dataset_version": "cropmath-v1",
|
| 4 |
+
"hidden_scoring_service": "unavailable",
|
| 5 |
+
"visibility": "private",
|
| 6 |
+
"public_release": false
|
| 7 |
+
}
|
CITATION.cff
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
cff-version: 1.2.0
|
| 2 |
+
title: 'CropMath: An Objective Benchmark for Mechanistic Formula Reasoning in Agricultural
|
| 3 |
+
Large Language Models'
|
| 4 |
+
message: If you use this dataset, please cite it using the metadata below.
|
| 5 |
+
type: dataset
|
| 6 |
+
authors:
|
| 7 |
+
- family-names: Ma
|
| 8 |
+
given-names: Yuanyuan
|
| 9 |
+
affiliation: Nanjing Agricultural University
|
| 10 |
+
year: 2026
|
| 11 |
+
license: CC-BY-4.0
|
| 12 |
+
abstract: CropMath is an objective benchmark for evaluating mechanistic formula reasoning
|
| 13 |
+
in agricultural large language models. It contains 62 formulas from 4 public family
|
| 14 |
+
categories (growth_yield, carbon_nitrogen_cycle, methane_emission, environmental_response),
|
| 15 |
+
6 knowledge-ablation conditions, and 4 reasoning modes. Ground-truth answers are
|
| 16 |
+
derived deterministically from the documented mathematical expressions.
|
| 17 |
+
keywords:
|
| 18 |
+
- agricultural science
|
| 19 |
+
- mechanistic formula reasoning
|
| 20 |
+
- formula reasoning
|
| 21 |
+
- numerical reasoning
|
| 22 |
+
- benchmark
|
| 23 |
+
- knowledge ablation
|
| 24 |
+
- LLM evaluation
|
| 25 |
+
repository-code: https://github.com/YuanyuanMa03/CropMath
|
CODE_LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2026 Agri-Align Contributors
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
HIDDEN_POLICY.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Answer-withheld auxiliary set
|
| 2 |
+
|
| 3 |
+
The `default` and `eval_prompts` configurations contain reference answers. The
|
| 4 |
+
`gold` split is a 95-row subset of `test`, not an independent evaluation set.
|
| 5 |
+
|
| 6 |
+
The `hidden_public` configuration contains 160 additional questions, including
|
| 7 |
+
formula expressions, input parameters and prompts. It does not distribute
|
| 8 |
+
reference answers, solutions or effective-parameter fields. Its sample IDs are
|
| 9 |
+
disjoint from the public development and test splits.
|
| 10 |
+
|
| 11 |
+
This is a question-public, answer-withheld auxiliary set. Withholding reference
|
| 12 |
+
labels and using disjoint IDs do not establish absence of training contamination:
|
| 13 |
+
the public questions can still be solved and may become part of training data.
|
| 14 |
+
The existing answer commitment fields are retained as metadata; this release
|
| 15 |
+
does not claim that the corresponding private answer files have been located
|
| 16 |
+
and independently checked as part of public-package validation.
|
| 17 |
+
|
| 18 |
+
No hosted hidden-set scoring service or submission endpoint is included or
|
| 19 |
+
currently offered by this candidate. Public-split scoring can be reproduced
|
| 20 |
+
locally. Hidden-set scoring requires separately verified reference answers and
|
| 21 |
+
a defined evaluation procedure. Any later service must document submission
|
| 22 |
+
format, complete-sample coverage, duplicate and unknown-ID handling, scoring
|
| 23 |
+
rules, access conditions and limits before accepting benchmark submissions.
|
| 24 |
+
|
| 25 |
+
Private reference answers, private calculators and generation implementations
|
| 26 |
+
are excluded from both publication candidates. This policy does not promise
|
| 27 |
+
future access to those materials.
|
LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
CropMath dataset release cropmath-v1 is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0): https://creativecommons.org/licenses/by/4.0/
|
README.md
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: CropMath
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
- zh
|
| 7 |
+
task_categories:
|
| 8 |
+
- question-answering
|
| 9 |
+
configs:
|
| 10 |
+
- config_name: default
|
| 11 |
+
default: true
|
| 12 |
+
data_files:
|
| 13 |
+
- split: dev
|
| 14 |
+
path: data/default/dev.jsonl
|
| 15 |
+
- split: test
|
| 16 |
+
path: data/default/test.jsonl
|
| 17 |
+
- split: gold
|
| 18 |
+
path: data/default/gold.jsonl
|
| 19 |
+
- config_name: eval_prompts
|
| 20 |
+
data_files:
|
| 21 |
+
- split: dev
|
| 22 |
+
path: data/eval_prompts/dev.jsonl
|
| 23 |
+
- split: test
|
| 24 |
+
path: data/eval_prompts/test.jsonl
|
| 25 |
+
- split: gold
|
| 26 |
+
path: data/eval_prompts/gold.jsonl
|
| 27 |
+
- config_name: hidden_public
|
| 28 |
+
data_files:
|
| 29 |
+
- split: hidden_public
|
| 30 |
+
path: hidden_public/hidden_public.jsonl
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
# CropMath dataset for private review
|
| 34 |
+
|
| 35 |
+
CropMath contains agricultural mechanistic formula questions with numeric
|
| 36 |
+
reference answers and controlled knowledge conditions. The `cropmath-v1`
|
| 37 |
+
snapshot is deposited for private review in [myy555/CropMath](https://huggingface.co/datasets/myy555/CropMath).
|
| 38 |
+
The accompanying toolkit is in [YuanyuanMa03/CropMath](https://github.com/YuanyuanMa03/CropMath).
|
| 39 |
+
These repositories require access permission. This is not a public release;
|
| 40 |
+
no DOI or hosted hidden-set evaluation service is provided.
|
| 41 |
+
|
| 42 |
+
## Contents and split relationships
|
| 43 |
+
|
| 44 |
+
| Configuration | dev | test | gold | hidden_public |
|
| 45 |
+
|---|---:|---:|---:|---:|
|
| 46 |
+
| default | 252 | 751 | 95 | — |
|
| 47 |
+
| eval_prompts | 1,512 | 4,506 | 570 | — |
|
| 48 |
+
| hidden_public | — | — | — | 160 |
|
| 49 |
+
|
| 50 |
+
The 95 gold questions are copied from test for auditing; do not add them to the
|
| 51 |
+
test count or treat them as an independent split. There are 1,003 unique
|
| 52 |
+
development/test questions. The six-condition expansion repeats the same
|
| 53 |
+
questions with different knowledge blocks; it does not create independent
|
| 54 |
+
questions. The formula catalog contains 62 public identifiers, CMF001–CMF062.
|
| 55 |
+
|
| 56 |
+
The public process categories are `growth_yield`, `carbon_nitrogen_cycle`,
|
| 57 |
+
`methane_emission`, and `environmental_response`. Reasoning modes are `direct`,
|
| 58 |
+
`sensitivity`, `branch`, and `chain_2`.
|
| 59 |
+
|
| 60 |
+
## Local loading
|
| 61 |
+
|
| 62 |
+
Run this example from the dataset directory with the `datasets` package installed:
|
| 63 |
+
|
| 64 |
+
```python
|
| 65 |
+
from pathlib import Path
|
| 66 |
+
from datasets import load_dataset
|
| 67 |
+
|
| 68 |
+
path = str(Path.cwd())
|
| 69 |
+
questions = load_dataset(path, "default")
|
| 70 |
+
prompts = load_dataset(path, "eval_prompts")
|
| 71 |
+
auxiliary = load_dataset(path, "hidden_public")
|
| 72 |
+
assert len(questions["test"]) == 751
|
| 73 |
+
assert len(prompts["test"]) == 4506
|
| 74 |
+
assert len(auxiliary["hidden_public"]) == 160
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
The standalone Hugging Face candidate also contains `pyproject.toml`, `uv.lock`,
|
| 78 |
+
validation scripts and dataset tests. From its root:
|
| 79 |
+
|
| 80 |
+
```bash
|
| 81 |
+
uv sync --locked
|
| 82 |
+
uv run --locked pytest -q tests
|
| 83 |
+
uv run --locked python scripts/validate_cropmath_release.py --release-dir . --no-scan-repo-root
|
| 84 |
+
uv run --locked python scripts/validate_formula_catalog.py --path metadata/formula_catalog.csv
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
For the copy inside the GitHub candidate, use that repository's root README
|
| 88 |
+
commands instead. Validation success means the specified local checks passed;
|
| 89 |
+
it does not establish scientific validity or online Viewer behavior.
|
| 90 |
+
|
| 91 |
+
## Authenticated remote loading
|
| 92 |
+
|
| 93 |
+
For an account granted access to the private dataset, authenticate with
|
| 94 |
+
`hf auth login` in an environment containing the Hugging Face CLI, then run:
|
| 95 |
+
|
| 96 |
+
```python
|
| 97 |
+
from datasets import load_dataset
|
| 98 |
+
|
| 99 |
+
questions = load_dataset("myy555/CropMath", "default", token=True)
|
| 100 |
+
prompts = load_dataset("myy555/CropMath", "eval_prompts", token=True)
|
| 101 |
+
auxiliary = load_dataset("myy555/CropMath", "hidden_public", token=True)
|
| 102 |
+
```
|
| 103 |
+
|
| 104 |
+
The local loading instructions remain useful for downloaded copies. Do not
|
| 105 |
+
publish access tokens or include them in notebooks and scripts.
|
| 106 |
+
|
| 107 |
+
## Fields and use
|
| 108 |
+
|
| 109 |
+
`default` rows include `id`, `problem`, `formula`, `parameters`, reasoning mode,
|
| 110 |
+
knowledge blocks, per-condition prompts, `answer` and `solution`.
|
| 111 |
+
`eval_prompts` rows include a condition-specific `id`, the original `sample_id`,
|
| 112 |
+
`condition`, `prompt`, `answer_float`, `precision` and grouping metadata.
|
| 113 |
+
Only send the selected `prompt` to a model. Do not include the answer, solution,
|
| 114 |
+
other conditions' knowledge blocks or scoring metadata in the model input.
|
| 115 |
+
|
| 116 |
+
The six conditions are C (formula and inputs), K_name (name), K_formula
|
| 117 |
+
(parameter semantics), K_domain (domain context), K_distractor (distractors),
|
| 118 |
+
and K_wrong (an incorrect formula). The target remains the reference answer
|
| 119 |
+
to the original task even when K_wrong supplies an incorrect formula.
|
| 120 |
+
|
| 121 |
+
Numeric scoring uses:
|
| 122 |
+
|
| 123 |
+
```text
|
| 124 |
+
abs(prediction - answer) <= max(0.5 * 10**(-precision), abs(answer) * 0.01)
|
| 125 |
+
```
|
| 126 |
+
|
| 127 |
+
Unparseable predictions count as incorrect. Preserve sample pairing across
|
| 128 |
+
conditions and account for formula-level clustering in statistical inference.
|
| 129 |
+
See `eval.yaml` for the serialized protocol and `HIDDEN_POLICY.md` for auxiliary-set access.
|
| 130 |
+
|
| 131 |
+
## Provenance and limitations
|
| 132 |
+
|
| 133 |
+
The snapshot contains standardized expressions, reference labels, a public
|
| 134 |
+
formula catalog and audit metadata. It does not distribute private calculator
|
| 135 |
+
implementations, generation code or a complete per-formula bibliographic mapping.
|
| 136 |
+
Consequently, this package supports reusing questions and checking numeric
|
| 137 |
+
predictions against stored labels, but does not independently reproduce the
|
| 138 |
+
entire formula acquisition and reference-answer generation process.
|
| 139 |
+
|
| 140 |
+
The audit CSV and protocols are supplied records, not a new independent human
|
| 141 |
+
audit performed by the package validator. Automated parser tests check the
|
| 142 |
+
serialized solutions; they do not certify the human-audit provenance.
|
| 143 |
+
Inputs are synthetic, and this benchmark does not establish reliability on
|
| 144 |
+
field observations, complete crop simulations or real agricultural decisions.
|
| 145 |
+
|
| 146 |
+
The 160 auxiliary questions are public while their answers are withheld. No
|
| 147 |
+
hosted scoring service is supplied. ID disjointness and withheld labels are not
|
| 148 |
+
proof of absence of training contamination. See `HIDDEN_POLICY.md`.
|
| 149 |
+
|
| 150 |
+
## Licensing and attribution
|
| 151 |
+
|
| 152 |
+
Dataset contents are provided under CC BY 4.0; see `LICENSE`. Validation code
|
| 153 |
+
included in the standalone candidate uses the MIT terms in `CODE_LICENSE`.
|
| 154 |
+
The GitHub candidate has a separate MIT license for its code. Attribution
|
| 155 |
+
metadata is provided in `CITATION.cff`, including the private toolkit address.
|
| 156 |
+
No DOI or public release identifier is asserted. Existing notices are preserved.
|
data/default/dev.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/default/gold.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/default/test.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1443ba77d490a7a697adf1fdd83e2e46e8222423970266f987087dd45a3bc554
|
| 3 |
+
size 12942947
|
data/eval_prompts/dev.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/eval_prompts/gold.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/eval_prompts/test.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:008444e4e01946fd545082b4a348eaed067cce5198e21bad4a8ec49cd18984e4
|
| 3 |
+
size 11262714
|
eval.yaml
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CropMath v1 evaluation protocol.
|
| 2 |
+
#
|
| 3 |
+
# This file is a framework-neutral protocol description.
|
| 4 |
+
|
| 5 |
+
name: CropMath
|
| 6 |
+
version: cropmath-v1
|
| 7 |
+
primary_config: eval_prompts
|
| 8 |
+
primary_split: test
|
| 9 |
+
hidden_config: hidden_public
|
| 10 |
+
hidden_policy: answers_not_distributed
|
| 11 |
+
hidden_scoring_service: unavailable
|
| 12 |
+
conditions:
|
| 13 |
+
- C
|
| 14 |
+
- K_name
|
| 15 |
+
- K_formula
|
| 16 |
+
- K_domain
|
| 17 |
+
- K_distractor
|
| 18 |
+
- K_wrong
|
| 19 |
+
prompt_field: prompt
|
| 20 |
+
target_field: answer_float
|
| 21 |
+
metadata_fields:
|
| 22 |
+
- sample_id
|
| 23 |
+
- formula_id
|
| 24 |
+
- family
|
| 25 |
+
- mode
|
| 26 |
+
- level
|
| 27 |
+
- precision
|
| 28 |
+
decoding:
|
| 29 |
+
temperature: 0.0
|
| 30 |
+
max_new_tokens: 2048
|
| 31 |
+
seed: 42
|
| 32 |
+
thinking_mode: off
|
| 33 |
+
answer_extraction_order:
|
| 34 |
+
- boxed
|
| 35 |
+
- gsm8k_hashes
|
| 36 |
+
- explicit_answer_line
|
| 37 |
+
- last_number_fallback
|
| 38 |
+
correctness:
|
| 39 |
+
type: numeric_tolerance
|
| 40 |
+
expression: abs(prediction - answer_float) <= max(0.5 * 10^-precision, abs(answer_float) * 0.01)
|
| 41 |
+
statistics:
|
| 42 |
+
paired_test: mcnemar_exact
|
| 43 |
+
effect_size: paired_accuracy_delta
|
| 44 |
+
multiple_testing: benjamini_hochberg_fdr
|
hidden_public/hidden_policy.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"hidden_samples": 160,
|
| 3 |
+
"seed": 20260609,
|
| 4 |
+
"public_file": "release/cropmath-v1/hidden_public/hidden_public.jsonl",
|
| 5 |
+
"private_answer_file": "not_included_in_public_release",
|
| 6 |
+
"answer_release_policy": "question-public, answer-withheld auxiliary set; formulas, inputs and prompts are public; no hosted scoring service; disjoint IDs do not prove absence of training contamination",
|
| 7 |
+
"families": {
|
| 8 |
+
"carbon_nitrogen_cycle": 35,
|
| 9 |
+
"methane_emission": 27,
|
| 10 |
+
"growth_yield": 76,
|
| 11 |
+
"environmental_response": 22
|
| 12 |
+
},
|
| 13 |
+
"modes": {
|
| 14 |
+
"branch": 21,
|
| 15 |
+
"chain_2": 21,
|
| 16 |
+
"direct": 57,
|
| 17 |
+
"sensitivity": 61
|
| 18 |
+
},
|
| 19 |
+
"levels": {
|
| 20 |
+
"1": 28,
|
| 21 |
+
"2": 58,
|
| 22 |
+
"3": 40,
|
| 23 |
+
"4": 34
|
| 24 |
+
},
|
| 25 |
+
"public_id_overlap": 0,
|
| 26 |
+
"private_answer_verification": "not verified by this public candidate build"
|
| 27 |
+
}
|
hidden_public/hidden_public.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
metadata/category_summary.csv
ADDED
|
@@ -0,0 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
split,category,value,count
|
| 2 |
+
dev,family,carbon_nitrogen_cycle,65
|
| 3 |
+
dev,family,methane_emission,47
|
| 4 |
+
dev,family,growth_yield,111
|
| 5 |
+
dev,family,environmental_response,29
|
| 6 |
+
dev,subject,carbon-nitrogen cycling nitrogen,5
|
| 7 |
+
dev,subject,carbon-nitrogen cycling photosynthesis,24
|
| 8 |
+
dev,subject,carbon-nitrogen cycling respiration,8
|
| 9 |
+
dev,subject,carbon-nitrogen cycling soil carbon,12
|
| 10 |
+
dev,subject,carbon-nitrogen cycling stress,4
|
| 11 |
+
dev,subject,carbon-nitrogen cycling water,7
|
| 12 |
+
dev,subject,Dry matter partitioning,17
|
| 13 |
+
dev,subject,Leaf area growth,13
|
| 14 |
+
dev,subject,Methane,47
|
| 15 |
+
dev,subject,Nitrogen,5
|
| 16 |
+
dev,subject,Phenology,26
|
| 17 |
+
dev,subject,Photosynthesis,22
|
| 18 |
+
dev,subject,Respiration,19
|
| 19 |
+
dev,subject,environmental-response formula system,29
|
| 20 |
+
dev,subject,Temperature response,4
|
| 21 |
+
dev,subject,Temperature stress,9
|
| 22 |
+
dev,subject,Yield formation,1
|
| 23 |
+
dev,mode,branch,33
|
| 24 |
+
dev,mode,chain_2,33
|
| 25 |
+
dev,mode,direct,100
|
| 26 |
+
dev,mode,sensitivity,86
|
| 27 |
+
dev,math_type,Beta temperature response,8
|
| 28 |
+
dev,math_type,Biomass-weighted allocation,1
|
| 29 |
+
dev,math_type,Chained multiplicative decomposition,4
|
| 30 |
+
dev,math_type,Chained sum,4
|
| 31 |
+
dev,math_type,Double logistic,2
|
| 32 |
+
dev,math_type,Exponential growth,2
|
| 33 |
+
dev,math_type,Exponential quadratic,7
|
| 34 |
+
dev,math_type,Exponential ratio,4
|
| 35 |
+
dev,math_type,Linear,12
|
| 36 |
+
dev,math_type,Linear decline,4
|
| 37 |
+
dev,math_type,Logarithmic,11
|
| 38 |
+
dev,math_type,Logarithmic minimum,3
|
| 39 |
+
dev,math_type,Logistic,2
|
| 40 |
+
dev,math_type,Maximum linear,8
|
| 41 |
+
dev,math_type,Maximum with chained drivers,6
|
| 42 |
+
dev,math_type,Michaelis-Menten response,4
|
| 43 |
+
dev,math_type,Minimum stress multiplier,3
|
| 44 |
+
dev,math_type,Multi-step sigmoid,3
|
| 45 |
+
dev,math_type,Multiplicative,8
|
| 46 |
+
dev,math_type,Multiplicative conversion,10
|
| 47 |
+
dev,math_type,Multiplicative minimum stress,3
|
| 48 |
+
dev,math_type,Multiplicative with minimum stress,6
|
| 49 |
+
dev,math_type,Piecewise exponential,6
|
| 50 |
+
dev,math_type,Piecewise exponential decay,6
|
| 51 |
+
dev,math_type,Piecewise linear,4
|
| 52 |
+
dev,math_type,Piecewise linear cap,4
|
| 53 |
+
dev,math_type,Piecewise linear stress,5
|
| 54 |
+
dev,math_type,Piecewise linear/exponential,1
|
| 55 |
+
dev,math_type,Piecewise logistic,3
|
| 56 |
+
dev,math_type,Piecewise minimum,4
|
| 57 |
+
dev,math_type,Piecewise polynomial,4
|
| 58 |
+
dev,math_type,Piecewise power penalty,6
|
| 59 |
+
dev,math_type,Piecewise quadratic,2
|
| 60 |
+
dev,math_type,Piecewise trigonometric,4
|
| 61 |
+
dev,math_type,Piecewise water response,7
|
| 62 |
+
dev,math_type,Power attenuation,2
|
| 63 |
+
dev,math_type,Power product,2
|
| 64 |
+
dev,math_type,Power response,5
|
| 65 |
+
dev,math_type,Product,14
|
| 66 |
+
dev,math_type,Product with Q10 temperature response,4
|
| 67 |
+
dev,math_type,Product with exponential saturation,2
|
| 68 |
+
dev,math_type,Q10 temperature response,4
|
| 69 |
+
dev,math_type,Q10 with DVI correction,8
|
| 70 |
+
dev,math_type,Q10 with temperature clipping,5
|
| 71 |
+
dev,math_type,Quadratic polynomial,2
|
| 72 |
+
dev,math_type,Ratio,7
|
| 73 |
+
dev,math_type,Residual from shoot partitioning,6
|
| 74 |
+
dev,math_type,Residual with piecewise components,3
|
| 75 |
+
dev,math_type,Stage-dependent product,12
|
| 76 |
+
dev,math_type,Subtraction and conversion,5
|
| 77 |
+
dev,level,1,57
|
| 78 |
+
dev,level,2,93
|
| 79 |
+
dev,level,3,54
|
| 80 |
+
dev,level,4,48
|
| 81 |
+
gold,family,carbon_nitrogen_cycle,20
|
| 82 |
+
gold,family,methane_emission,15
|
| 83 |
+
gold,family,growth_yield,49
|
| 84 |
+
gold,family,environmental_response,11
|
| 85 |
+
gold,subject,carbon-nitrogen cycling nitrogen,2
|
| 86 |
+
gold,subject,carbon-nitrogen cycling photosynthesis,8
|
| 87 |
+
gold,subject,carbon-nitrogen cycling respiration,2
|
| 88 |
+
gold,subject,carbon-nitrogen cycling soil carbon,5
|
| 89 |
+
gold,subject,carbon-nitrogen cycling water,1
|
| 90 |
+
gold,subject,Dry matter partitioning,12
|
| 91 |
+
gold,subject,Leaf area growth,10
|
| 92 |
+
gold,subject,Methane,15
|
| 93 |
+
gold,subject,Nitrogen,2
|
| 94 |
+
gold,subject,Phenology,8
|
| 95 |
+
gold,subject,Photosynthesis,9
|
| 96 |
+
gold,subject,Respiration,5
|
| 97 |
+
gold,subject,environmental-response formula system,11
|
| 98 |
+
gold,subject,Temperature stress,4
|
| 99 |
+
gold,subject,Yield formation,1
|
| 100 |
+
gold,mode,branch,12
|
| 101 |
+
gold,mode,chain_2,15
|
| 102 |
+
gold,mode,direct,35
|
| 103 |
+
gold,mode,sensitivity,33
|
| 104 |
+
gold,math_type,Beta temperature response,1
|
| 105 |
+
gold,math_type,Biomass-weighted allocation,1
|
| 106 |
+
gold,math_type,Chained multiplicative decomposition,1
|
| 107 |
+
gold,math_type,Chained sum,1
|
| 108 |
+
gold,math_type,Exponential growth,4
|
| 109 |
+
gold,math_type,Exponential ratio,1
|
| 110 |
+
gold,math_type,Exponential saturation,1
|
| 111 |
+
gold,math_type,Linear,2
|
| 112 |
+
gold,math_type,Logarithmic,4
|
| 113 |
+
gold,math_type,Logarithmic minimum,3
|
| 114 |
+
gold,math_type,Logistic,1
|
| 115 |
+
gold,math_type,Maximum linear,2
|
| 116 |
+
gold,math_type,Michaelis-Menten response,3
|
| 117 |
+
gold,math_type,Minimum stress multiplier,3
|
| 118 |
+
gold,math_type,Multi-step sigmoid,5
|
| 119 |
+
gold,math_type,Multiplicative,3
|
| 120 |
+
gold,math_type,Multiplicative conversion,2
|
| 121 |
+
gold,math_type,Multiplicative with minimum stress,2
|
| 122 |
+
gold,math_type,Piecewise exponential,5
|
| 123 |
+
gold,math_type,Piecewise exponential decay,2
|
| 124 |
+
gold,math_type,Piecewise linear,4
|
| 125 |
+
gold,math_type,Piecewise linear cap,3
|
| 126 |
+
gold,math_type,Piecewise linear stress,1
|
| 127 |
+
gold,math_type,Piecewise linear/exponential,3
|
| 128 |
+
gold,math_type,Piecewise logistic,2
|
| 129 |
+
gold,math_type,Piecewise minimum,1
|
| 130 |
+
gold,math_type,Piecewise polynomial,2
|
| 131 |
+
gold,math_type,Piecewise power penalty,2
|
| 132 |
+
gold,math_type,Piecewise quadratic,5
|
| 133 |
+
gold,math_type,Piecewise water response,1
|
| 134 |
+
gold,math_type,Power attenuation,2
|
| 135 |
+
gold,math_type,Power response,2
|
| 136 |
+
gold,math_type,Product,3
|
| 137 |
+
gold,math_type,Product with Q10 temperature response,2
|
| 138 |
+
gold,math_type,Product with exponential saturation,1
|
| 139 |
+
gold,math_type,Q10 temperature response,1
|
| 140 |
+
gold,math_type,Q10 with DVI correction,2
|
| 141 |
+
gold,math_type,Q10 with temperature clipping,2
|
| 142 |
+
gold,math_type,Quadratic polynomial,3
|
| 143 |
+
gold,math_type,Ratio,2
|
| 144 |
+
gold,math_type,Residual with piecewise components,1
|
| 145 |
+
gold,math_type,Subtraction and conversion,3
|
| 146 |
+
gold,level,1,20
|
| 147 |
+
gold,level,2,34
|
| 148 |
+
gold,level,3,26
|
| 149 |
+
gold,level,4,15
|
| 150 |
+
test,family,carbon_nitrogen_cycle,168
|
| 151 |
+
test,family,methane_emission,127
|
| 152 |
+
test,family,growth_yield,353
|
| 153 |
+
test,family,environmental_response,103
|
| 154 |
+
test,subject,carbon-nitrogen cycling nitrogen,31
|
| 155 |
+
test,subject,carbon-nitrogen cycling photosynthesis,42
|
| 156 |
+
test,subject,carbon-nitrogen cycling respiration,10
|
| 157 |
+
test,subject,carbon-nitrogen cycling soil carbon,53
|
| 158 |
+
test,subject,carbon-nitrogen cycling stress,14
|
| 159 |
+
test,subject,carbon-nitrogen cycling water,11
|
| 160 |
+
test,subject,Dry matter partitioning,79
|
| 161 |
+
test,subject,Leaf area growth,53
|
| 162 |
+
test,subject,Methane,127
|
| 163 |
+
test,subject,Nitrogen,7
|
| 164 |
+
test,subject,Phenology,68
|
| 165 |
+
test,subject,Photosynthesis,62
|
| 166 |
+
test,subject,Respiration,40
|
| 167 |
+
test,subject,environmental-response formula system,103
|
| 168 |
+
test,subject,Temperature response,14
|
| 169 |
+
test,subject,Temperature stress,27
|
| 170 |
+
test,subject,Yield formation,10
|
| 171 |
+
test,mode,branch,99
|
| 172 |
+
test,mode,chain_2,99
|
| 173 |
+
test,mode,direct,272
|
| 174 |
+
test,mode,sensitivity,281
|
| 175 |
+
test,math_type,Beta temperature response,27
|
| 176 |
+
test,math_type,Biomass-weighted allocation,11
|
| 177 |
+
test,math_type,Chained multiplicative decomposition,14
|
| 178 |
+
test,math_type,Chained sum,14
|
| 179 |
+
test,math_type,Double logistic,16
|
| 180 |
+
test,math_type,Exponential growth,16
|
| 181 |
+
test,math_type,Exponential quadratic,5
|
| 182 |
+
test,math_type,Exponential ratio,14
|
| 183 |
+
test,math_type,Exponential saturation,12
|
| 184 |
+
test,math_type,Linear,23
|
| 185 |
+
test,math_type,Linear decline,8
|
| 186 |
+
test,math_type,Logarithmic,13
|
| 187 |
+
test,math_type,Logarithmic minimum,15
|
| 188 |
+
test,math_type,Logistic,10
|
| 189 |
+
test,math_type,Maximum linear,22
|
| 190 |
+
test,math_type,Maximum with chained drivers,12
|
| 191 |
+
test,math_type,Michaelis-Menten response,14
|
| 192 |
+
test,math_type,Minimum stress multiplier,15
|
| 193 |
+
test,math_type,Multi-step sigmoid,15
|
| 194 |
+
test,math_type,Multiplicative,28
|
| 195 |
+
test,math_type,Multiplicative conversion,8
|
| 196 |
+
test,math_type,Multiplicative minimum stress,15
|
| 197 |
+
test,math_type,Multiplicative with minimum stress,12
|
| 198 |
+
test,math_type,Piecewise exponential,30
|
| 199 |
+
test,math_type,Piecewise exponential decay,12
|
| 200 |
+
test,math_type,Piecewise linear,14
|
| 201 |
+
test,math_type,Piecewise linear cap,14
|
| 202 |
+
test,math_type,Piecewise linear stress,13
|
| 203 |
+
test,math_type,Piecewise linear/exponential,17
|
| 204 |
+
test,math_type,Piecewise logistic,15
|
| 205 |
+
test,math_type,Piecewise minimum,20
|
| 206 |
+
test,math_type,Piecewise polynomial,14
|
| 207 |
+
test,math_type,Piecewise power penalty,12
|
| 208 |
+
test,math_type,Piecewise quadratic,22
|
| 209 |
+
test,math_type,Piecewise trigonometric,14
|
| 210 |
+
test,math_type,Piecewise water response,11
|
| 211 |
+
test,math_type,Power attenuation,10
|
| 212 |
+
test,math_type,Power product,10
|
| 213 |
+
test,math_type,Power response,13
|
| 214 |
+
test,math_type,Product,32
|
| 215 |
+
test,math_type,Product with Q10 temperature response,14
|
| 216 |
+
test,math_type,Product with exponential saturation,10
|
| 217 |
+
test,math_type,Q10 temperature response,13
|
| 218 |
+
test,math_type,Q10 with DVI correction,10
|
| 219 |
+
test,math_type,Q10 with temperature clipping,13
|
| 220 |
+
test,math_type,Quadratic polynomial,10
|
| 221 |
+
test,math_type,Ratio,17
|
| 222 |
+
test,math_type,Residual from shoot partitioning,12
|
| 223 |
+
test,math_type,Residual with piecewise components,15
|
| 224 |
+
test,math_type,Stage-dependent product,12
|
| 225 |
+
test,math_type,Subtraction and conversion,13
|
| 226 |
+
test,level,1,153
|
| 227 |
+
test,level,2,270
|
| 228 |
+
test,level,3,190
|
| 229 |
+
test,level,4,138
|
metadata/dataset_stats.json
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"data_version": "cropmath-v1",
|
| 3 |
+
"source_data_dir": "release/cropmath-v1[private path removed]",
|
| 4 |
+
"official_unique_samples": 1003,
|
| 5 |
+
"dev_test_overlap": 0,
|
| 6 |
+
"gold_subset_of_test": true,
|
| 7 |
+
"conditions": [
|
| 8 |
+
"C",
|
| 9 |
+
"K_name",
|
| 10 |
+
"K_formula",
|
| 11 |
+
"K_domain",
|
| 12 |
+
"K_distractor",
|
| 13 |
+
"K_wrong"
|
| 14 |
+
],
|
| 15 |
+
"splits": {
|
| 16 |
+
"dev": {
|
| 17 |
+
"rows": 252,
|
| 18 |
+
"unique_ids": 252,
|
| 19 |
+
"formulas": 61,
|
| 20 |
+
"families": {
|
| 21 |
+
"carbon_nitrogen_cycle": 65,
|
| 22 |
+
"methane_emission": 47,
|
| 23 |
+
"growth_yield": 111,
|
| 24 |
+
"environmental_response": 29
|
| 25 |
+
},
|
| 26 |
+
"modes": {
|
| 27 |
+
"branch": 33,
|
| 28 |
+
"chain_2": 33,
|
| 29 |
+
"direct": 100,
|
| 30 |
+
"sensitivity": 86
|
| 31 |
+
},
|
| 32 |
+
"levels": {
|
| 33 |
+
"1": 57,
|
| 34 |
+
"2": 93,
|
| 35 |
+
"3": 54,
|
| 36 |
+
"4": 48
|
| 37 |
+
}
|
| 38 |
+
},
|
| 39 |
+
"test": {
|
| 40 |
+
"rows": 751,
|
| 41 |
+
"unique_ids": 751,
|
| 42 |
+
"formulas": 62,
|
| 43 |
+
"families": {
|
| 44 |
+
"carbon_nitrogen_cycle": 168,
|
| 45 |
+
"methane_emission": 127,
|
| 46 |
+
"growth_yield": 353,
|
| 47 |
+
"environmental_response": 103
|
| 48 |
+
},
|
| 49 |
+
"modes": {
|
| 50 |
+
"branch": 99,
|
| 51 |
+
"chain_2": 99,
|
| 52 |
+
"direct": 272,
|
| 53 |
+
"sensitivity": 281
|
| 54 |
+
},
|
| 55 |
+
"levels": {
|
| 56 |
+
"1": 153,
|
| 57 |
+
"2": 270,
|
| 58 |
+
"3": 190,
|
| 59 |
+
"4": 138
|
| 60 |
+
}
|
| 61 |
+
},
|
| 62 |
+
"gold": {
|
| 63 |
+
"rows": 95,
|
| 64 |
+
"unique_ids": 95,
|
| 65 |
+
"formulas": 48,
|
| 66 |
+
"families": {
|
| 67 |
+
"carbon_nitrogen_cycle": 20,
|
| 68 |
+
"methane_emission": 15,
|
| 69 |
+
"growth_yield": 49,
|
| 70 |
+
"environmental_response": 11
|
| 71 |
+
},
|
| 72 |
+
"modes": {
|
| 73 |
+
"branch": 12,
|
| 74 |
+
"chain_2": 15,
|
| 75 |
+
"direct": 35,
|
| 76 |
+
"sensitivity": 33
|
| 77 |
+
},
|
| 78 |
+
"levels": {
|
| 79 |
+
"1": 20,
|
| 80 |
+
"2": 34,
|
| 81 |
+
"3": 26,
|
| 82 |
+
"4": 15
|
| 83 |
+
}
|
| 84 |
+
},
|
| 85 |
+
"hidden_public": {
|
| 86 |
+
"rows": 160,
|
| 87 |
+
"unique_ids": 160,
|
| 88 |
+
"formulas": 56,
|
| 89 |
+
"families": {
|
| 90 |
+
"carbon_nitrogen_cycle": 35,
|
| 91 |
+
"methane_emission": 27,
|
| 92 |
+
"growth_yield": 76,
|
| 93 |
+
"environmental_response": 22
|
| 94 |
+
},
|
| 95 |
+
"modes": {
|
| 96 |
+
"branch": 21,
|
| 97 |
+
"chain_2": 21,
|
| 98 |
+
"direct": 57,
|
| 99 |
+
"sensitivity": 61
|
| 100 |
+
},
|
| 101 |
+
"levels": {
|
| 102 |
+
"1": 28,
|
| 103 |
+
"2": 58,
|
| 104 |
+
"3": 40,
|
| 105 |
+
"4": 34
|
| 106 |
+
}
|
| 107 |
+
}
|
| 108 |
+
},
|
| 109 |
+
"eval_prompt_rows": {
|
| 110 |
+
"dev": 1512,
|
| 111 |
+
"test": 4506,
|
| 112 |
+
"gold": 570
|
| 113 |
+
},
|
| 114 |
+
"hidden_public_rows": 160,
|
| 115 |
+
"skipped_rows": {
|
| 116 |
+
"dev": [],
|
| 117 |
+
"test": [
|
| 118 |
+
"CMF051_sensitivity_t1_0001",
|
| 119 |
+
"CMF046_sensitivity_t0_0001",
|
| 120 |
+
"CMF054_sensitivity_t0_0000",
|
| 121 |
+
"CMF011_sensitivity_t1_0000",
|
| 122 |
+
"CMF028_sensitivity_t0_0000"
|
| 123 |
+
],
|
| 124 |
+
"gold": [
|
| 125 |
+
"CMF051_sensitivity_t1_0001"
|
| 126 |
+
]
|
| 127 |
+
}
|
| 128 |
+
}
|
metadata/dataset_tables.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Split Counts
|
| 2 |
+
|
| 3 |
+
| Split | Rows | Unique IDs | Formulas |
|
| 4 |
+
|---|---:|---:|---:|
|
| 5 |
+
| dev | 252 | 252 | 61 |
|
| 6 |
+
| test | 751 | 751 | 62 |
|
| 7 |
+
| gold | 95 | 95 | 48 |
|
| 8 |
+
| hidden_public | 160 | 160 | 56 |
|
metadata/error_taxonomy_protocol.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CropMath Error Taxonomy Protocol
|
| 2 |
+
|
| 3 |
+
Annotate at least 200 incorrect core-model predictions sampled across model, condition, family, and mode.
|
| 4 |
+
|
| 5 |
+
Allowed primary/secondary error types:
|
| 6 |
+
|
| 7 |
+
- `formula_selection_error`
|
| 8 |
+
- `parameter_substitution_error`
|
| 9 |
+
- `arithmetic_computation_error`
|
| 10 |
+
- `branch_condition_error`
|
| 11 |
+
- `sensitivity_change_handling_error`
|
| 12 |
+
- `unit_precision_rounding_error`
|
| 13 |
+
- `final_answer_extraction_format_error`
|
| 14 |
+
- `hallucinated_or_ignored_formula`
|
| 15 |
+
|
| 16 |
+
Set `parser_extraction_correct` to `yes`, `no`, or `unclear` after comparing the raw response with the parsed prediction.
|
metadata/error_taxonomy_template.csv
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
annotation_id,model_tag,condition,sample_id,formula_id,family,mode,level,ground_truth,prediction,primary_error_type,secondary_error_type,parser_extraction_correct,human_notes
|
metadata/evaluation_manifest.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "CropMath v1 formal evaluation manifest",
|
| 3 |
+
"data_version": "cropmath-v1",
|
| 4 |
+
"official_unique_samples": 1003,
|
| 5 |
+
"test_samples": 751,
|
| 6 |
+
"gold_policy": "gold is a 95-sample audit subset copied from test, not an independent split",
|
| 7 |
+
"hidden_policy": "question-public, answer-withheld auxiliary set; formulas, inputs and prompts are public; no hosted scoring service; disjoint IDs do not prove absence of training contamination",
|
| 8 |
+
"conditions": [
|
| 9 |
+
"C",
|
| 10 |
+
"K_name",
|
| 11 |
+
"K_formula",
|
| 12 |
+
"K_domain",
|
| 13 |
+
"K_distractor",
|
| 14 |
+
"K_wrong"
|
| 15 |
+
],
|
| 16 |
+
"prompt_config": "eval_prompts",
|
| 17 |
+
"prompt_field": "prompt",
|
| 18 |
+
"decoding": {
|
| 19 |
+
"temperature": 0.0,
|
| 20 |
+
"max_new_tokens": 2048,
|
| 21 |
+
"seed": 42
|
| 22 |
+
},
|
| 23 |
+
"correctness": {
|
| 24 |
+
"rule": "abs(prediction - ground_truth) <= max(0.5*10^-precision, abs(ground_truth)*0.01)"
|
| 25 |
+
},
|
| 26 |
+
"statistics": {
|
| 27 |
+
"paired_test": "McNemar exact test at item level",
|
| 28 |
+
"effect_size": "paired accuracy delta",
|
| 29 |
+
"multiple_testing": "Benjamini-Hochberg FDR"
|
| 30 |
+
}
|
| 31 |
+
}
|
metadata/formula_catalog.csv
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
formula_id,family,primary_subject,name_en,name_zh,unit,precision,expression,latex,math_type,math_types,modes,sample_count
|
| 2 |
+
CMF001,carbon_nitrogen_cycle,carbon-nitrogen cycling photosynthesis,carbon-nitrogen cycling CO2 fertilization factor,作物二氧化碳施肥因子,multiplier,3,1 + Coef_B_CO2 * ln(CO2 / 340),F_{CO2}=1+B\ln(CO2/340),Logarithmic,Logarithmic,direct;sensitivity,14
|
| 3 |
+
CMF002,carbon_nitrogen_cycle,carbon-nitrogen cycling photosynthesis,carbon-nitrogen cycling gross primary production,总初级生产力,g C/m2/day,3,Photo_Rate_opt * F_T * F_Water * F_CO2 * Day_Length_hour * 0.0432,GPP=P_{opt}F_TF_WF_{CO2}DL\cdot0.0432,Multiplicative conversion,Multiplicative conversion,sensitivity;direct;chain_2,20
|
| 4 |
+
CMF003,carbon_nitrogen_cycle,Nitrogen,Nitrogen use efficiency,氮利用效率,kg grain/kg N,2,GrainYield / NUptake,NUE=\frac{GrainYield}{NUptake},Ratio,Ratio,direct;sensitivity,14
|
| 5 |
+
CMF004,carbon_nitrogen_cycle,carbon-nitrogen cycling nitrogen,carbon-nitrogen cycling crop nitrogen demand,作物需氮量,g N/m2/day,3,"if NPP<0: 0; if N_shoot<3.5 and DVI<0.3: Coef_Plant_TN_uptake*N_shoot; else: min(N_requirement_max_day, Ratio_N_C_photo_product*NPP)","N_d=C_uN_{shoot}\;\text{or}\;\min(N_{max},r_NNPP)",Piecewise minimum,Piecewise minimum,chain_2;direct;branch;sensitivity,25
|
| 6 |
+
CMF005,carbon_nitrogen_cycle,carbon-nitrogen cycling nitrogen,carbon-nitrogen cycling shoot nitrogen allocation,地上部氮分配量,g N/m2,3,Plant_TN_uptake * Biom_shoot / (Biom_shoot + Biom_root),N_{shoot}=N_{uptake}\frac{B_{shoot}}{B_{shoot}+B_{root}},Biomass-weighted allocation,Biomass-weighted allocation,sensitivity;direct,13
|
| 7 |
+
CMF006,carbon_nitrogen_cycle,carbon-nitrogen cycling photosynthesis,carbon-nitrogen cycling canopy absorbed PAR,冠层吸收光合有效辐射,umol/m2/s,2,Radi * 0.44 * 4.6 * (1-Coef_rou) * (1-exp(-Coef_K*LAI)) / (Coef_K*LAI),PAR=Radi\cdot0.44\cdot4.6(1-\rho)\frac{1-e^{-KLAI}}{KLAI},Exponential ratio,Exponential ratio,direct;chain_2;sensitivity,19
|
| 8 |
+
CMF007,carbon_nitrogen_cycle,carbon-nitrogen cycling photosynthesis,carbon-nitrogen cycling optimal photosynthetic rate,最适光合速率,umol CO2/m2/s,3,(Coef_alfa * Leaf_N) * PAR / (PAR + Coef_beta),P_{opt}=\alpha N_{leaf}\frac{PAR}{PAR+\beta},Michaelis-Menten response,Michaelis-Menten response,sensitivity;chain_2;direct,21
|
| 9 |
+
CMF008,carbon_nitrogen_cycle,carbon-nitrogen cycling respiration,carbon-nitrogen cycling plant maintenance respiration,植株维持呼吸,g C/m2/day,3,0.0432*24*(Biom_plant_yesterday/0.45)*Coef_Rm*2^((Tmn-25)/10) / (if DVI>1: DVI^2; else: 1),R_m=0.0432\cdot24(Biom/0.45)C_m2^{(T-25)/10},Q10 with DVI correction,Q10 with DVI correction,branch;direct;sensitivity,20
|
| 10 |
+
CMF009,carbon_nitrogen_cycle,carbon-nitrogen cycling soil carbon,carbon-nitrogen cycling carbon pool respiration loss,碳库呼吸损失,g C/m2/day,3,Pool*Coef_K_Decom*F_temp*F_water*F_texture*F_pH*F_notill*(1-Coef_K_Trans),R=PoolK F_TF_WF_{texture}F_{pH}F_{notill}(1-K_{trans}),Chained multiplicative decomposition,Chained multiplicative decomposition,direct;sensitivity;chain_2,19
|
| 11 |
+
CMF010,carbon_nitrogen_cycle,carbon-nitrogen cycling soil carbon,carbon-nitrogen cycling soil pH decomposition factor,土壤pH分解因子,fraction,3,1 / (1 + exp(2.5 * (5 - pH))),F_{pH}=\frac{1}{1+e^{2.5(5-pH)}},Logistic,Logistic,direct;sensitivity,13
|
| 12 |
+
CMF011,carbon_nitrogen_cycle,carbon-nitrogen cycling soil carbon,carbon-nitrogen cycling soil carbon temperature factor,土壤碳分解温度因子,multiplier,3,if is_soil_temp>=0.5: 2.4**((Temp-10)*0.1); else: 2.4**((4.4+0.76*Temp-10)*0.1),F_T=2.4^{(T_{soil}-10)/10}\;\text{where}\;T_{soil}=T\;\text{or}\;4.4+0.76T,Q10 temperature response,Q10 temperature response,sensitivity;direct;branch,18
|
| 13 |
+
CMF012,carbon_nitrogen_cycle,carbon-nitrogen cycling soil carbon,carbon-nitrogen cycling soil carbon water factor,土壤碳分解水分因子,fraction,3,if Soil_Water>=Saturate_Water: 0.65; else: 0.49*exp(3.88*(Soil_Water/BD)-5.4*(Soil_Water/BD)^2),F_W=0.49e^{3.88W-5.4W^2},Piecewise exponential,Piecewise exponential,sensitivity;branch;direct,20
|
| 14 |
+
CMF013,carbon_nitrogen_cycle,carbon-nitrogen cycling stress,carbon-nitrogen cycling crop temperature activity factor,作物温度活性因子,response factor,3,if Td<=Tmin_active or Td>=Tmax_active: 0; else: ((Td-Tmin_active)/(Topt_active-Tmin_active))^(1+Coef_T_M) * ((Tmax_active-Td)/(Tmax_active-Topt_active))^(1-Coef_T_M),F_T=\left(\frac{T_d-T_{min}}{T_{opt}-T_{min}}\right)^{1+M}\left(\frac{T_{max}-T_d}{T_{max}-T_{opt}}\right)^{1-M},Beta temperature response,Beta temperature response,direct;branch;sensitivity,18
|
| 15 |
+
CMF014,carbon_nitrogen_cycle,carbon-nitrogen cycling water,carbon-nitrogen cycling crop water stress factor,作物水分胁迫因子,fraction,3,if Soil_Water<=Wilt_point: 0; if Soil_Water<Crop_Water_min: (Soil_Water-Wilt_point)/(Crop_Water_min-Wilt_point); if Soil_Water<Crop_Water_max: 1; else: 0.5*(1+(1-Soil_Water)/(1-Crop_Water_max)),"F_W=f(\theta,\theta_{wp},\theta_{min},\theta_{max})",Piecewise water response,Piecewise water response,sensitivity;branch;direct,19
|
| 16 |
+
CMF015,methane_emission,Methane,Root-exudate carbon substrate,根系分泌碳底物,g C/m2/day,3,0.0018 * VI * SI * W ** 1.25,C_r=0.0018VI\cdot SI\cdot W^{1.25},Power product,Power product,direct;sensitivity,12
|
| 17 |
+
CMF016,methane_emission,Methane,Methane ebullition emission,甲烷冒泡排放,g CH4/m2/day,3,"min(0.7 * ln(t_soil) / Wr, 0.9) * P","E_{bl}=\min(0.7\ln(t_{soil})/W_r,0.9)P",Logarithmic minimum,Logarithmic minimum,chain_2;sensitivity;direct,21
|
| 18 |
+
CMF017,methane_emission,Methane,Total methane emission,甲烷总排放,g CH4/m2/day,3,Ebl + P * CH4RiceEfC * (1 - W/Wmax)^0.25,E=E_{bl}+P\cdot C(1-W/W_{max})^{0.25},Chained sum,Chained sum,chain_2;sensitivity;direct,19
|
| 19 |
+
CMF018,methane_emission,Methane,Redox potential factor,氧化还原电位因子,fraction,3,if Eh<-150: 1; else: exp(-1.7*(1+Eh/150)),"F_{Eh}=1\;(Eh<-150),\quad e^{-1.7(1+Eh/150)}",Piecewise exponential,Piecewise exponential,direct;sensitivity;branch,21
|
| 20 |
+
CMF019,methane_emission,Methane,Plant methane transport factor,植株传输因子,fraction,3,CH4RiceEfC * (1 - W / Wmax) ** 0.25,F_p=C(1-W/W_{max})^{0.25},Power attenuation,Power attenuation,sensitivity;direct,14
|
| 21 |
+
CMF020,methane_emission,Methane,Fresh organic matter carbon decomposition,新鲜有机质碳分解量,g C/m2/day,3,WI * SI * TI * 0.027 * OMN,OMNC=WI\cdot SI\cdot TI\cdot0.027\cdot OMN,Multiplicative,Multiplicative,direct;sensitivity;chain_2,20
|
| 22 |
+
CMF021,methane_emission,Methane,Soil organic matter carbon decomposition,土壤有机质碳分解量,g C/m2/day,3,WI * SI * TI * 0.003 * OMS,OMSC=WI\cdot SI\cdot TI\cdot0.003\cdot OMS,Multiplicative,Multiplicative,chain_2;sensitivity;direct,19
|
| 23 |
+
CMF022,methane_emission,Methane,Methane production,甲烷产生量,g CH4/m2/day,3,"max(0, 0.27 * FEh * (TI * Cr + Com))","P=\max(0,0.27F_{Eh}(TI\cdot C_r+Com))",Maximum with chained drivers,Maximum with chained drivers,chain_2;sensitivity;direct,18
|
| 24 |
+
CMF023,methane_emission,Methane,Methane temperature index,甲烷温度指数,multiplier,3,"Q10^((min(t_soil,30)-30)/10)",TI=Q_{10}^{(t_{sl}-30)/10},Q10 with temperature clipping,Q10 with temperature clipping,sensitivity;direct;branch,20
|
| 25 |
+
CMF024,methane_emission,Methane,Soil temperature from air temperature,土壤温度估算,C,2,4.4 + 0.76 * Tair,T_{soil}=4.4+0.76T_{air},Linear,Linear,direct;sensitivity,13
|
| 26 |
+
CMF025,methane_emission,Methane,Water-content decomposition factor,水分分解因子,fraction,3,0.49 * exp(3.88 * WaterC - 5.4 * WaterC^2),WI=0.49e^{3.88W_c-5.4W_c^2},Exponential quadratic,Exponential quadratic,sensitivity;direct,12
|
| 27 |
+
CMF026,growth_yield,Photosynthesis,Actual maximum assimilation rate,实际最大同化速率,kg CO2/ha/h,2,"Am * FCO2 * FPA * FT * min(NNI, WDF)","AMAX=Am\cdot F_{CO2}\cdot F_{PA}\cdot F_T\cdot\min(NNI,WDF)",Multiplicative with minimum stress,Multiplicative with minimum stress,sensitivity;direct;chain_2,20
|
| 28 |
+
CMF027,growth_yield,Phenology,Daily physiological effectiveness,每日生理效应,physiological days/day,3,if PDT<8: DTE*IE; if PDT<18: DTE*RPE; if PDT<32: DTE; if PDT<57: DTE*BFF; else: 0,"DPE=DTE\cdot IE,\;DTE\cdot RPE,\;DTE,\;DTE\cdot BFF",Stage-dependent product,Stage-dependent product,chain_2;sensitivity;branch;direct,24
|
| 29 |
+
CMF028,growth_yield,Phenology,Emergence thermal requirement,出苗热量需求,C day,1,45 + 7 * SDEPTH,EMGDD=45+7SDEPTH,Linear,Linear,direct;sensitivity,11
|
| 30 |
+
CMF029,growth_yield,Photosynthesis,CO2 response factor,二氧化碳影响因子,multiplier,2,1 + beta * ln(Cx / 340),F_{CO2}=1+\beta\ln(C_x/340),Logarithmic,Logarithmic,direct;sensitivity,14
|
| 31 |
+
CMF030,growth_yield,Photosynthesis,Physiological age factor,生理年龄因子,fraction,2,if PDT<28: 1; else: exp(-a*(PDT-28)),"F_{PA}=1\;(PDT<28),\quad e^{-a(PDT-28)}\;(PDT\ge 28)",Piecewise exponential decay,Piecewise exponential decay,direct;branch;sensitivity,20
|
| 32 |
+
CMF031,growth_yield,Photosynthesis,Light interception fraction,光能截获率,fraction,2,1 - exp(-k * LAI),fPAR = 1 - e^{-k \cdot LAI},Exponential saturation,Exponential saturation,direct;sensitivity,13
|
| 33 |
+
CMF032,growth_yield,Temperature response,Temperature response factor,温度响应因子,fraction,2,if Tb<=T<Tol: sin(pi/2*(T-Tb)/(Tol-Tb)); if Tol<=T<Tou: 1; if Tou<=T<Tmax: cos(pi/2*(T-Tou)/(Tmax-Tou)); else: 0,F_T=\sin(\frac{T-T_b}{T_{ol}-T_b}\frac{\pi}{2}); 1; \cos(\frac{T-T_{ou}}{T_{max}-T_{ou}}\frac{\pi}{2}),Piecewise trigonometric,Piecewise trigonometric,direct;branch;sensitivity,18
|
| 34 |
+
CMF033,growth_yield,Respiration,Daily dry matter increment,日干物质增量,kg/ha/day,2,(DTGA - RM - RG) / (1 - b),GCR=\frac{DTGA-RM-RG}{1-b},Subtraction and conversion,Subtraction and conversion,chain_2;sensitivity;direct,21
|
| 35 |
+
CMF034,growth_yield,Dry matter partitioning,Harvest index,收获指数,fraction,2,Y_grain / B_above,HI=\frac{Y_{grain}}{B_{above}},Ratio,Ratio,direct;sensitivity,12
|
| 36 |
+
CMF035,growth_yield,Temperature stress,High-temperature fertility factor,高温结实因子,fraction,2,if 32<=PDT<=39 and Tmax_day>36.6: 1/(1+exp(0.853*(Tmax_day-36.6))); else: 1,HTF=\frac{1}{1+e^{0.853(T_m-36.6)}},Piecewise logistic,Piecewise logistic,sensitivity;branch;direct,20
|
| 37 |
+
CMF036,growth_yield,Photosynthesis,Canopy extinction coefficient,��层消光系数,dimensionless,3,0.0087 * PDT + 0.2222,K=0.0087PDT+0.2222,Linear,Linear,sensitivity;direct,13
|
| 38 |
+
CMF037,growth_yield,Leaf area growth,Potential leaf area index,潜在叶面积指数,m2/m2,2,LAI0 * exp(RP * GDD),LAI_P=LAI_0e^{RP\cdot GDD},Exponential growth,Exponential growth,sensitivity;chain_2;direct,22
|
| 39 |
+
CMF038,growth_yield,Leaf area growth,Leaf area index from SLA,比叶面积法叶面积指数,m2/m2,2,SLA * AWL,LAI=SLA\cdot AWL,Product,Product,direct;sensitivity,13
|
| 40 |
+
CMF039,growth_yield,Temperature stress,Low-temperature fertility factor,低温结实因子,fraction,2,if 26<=PDT<=39 and Tmean<22: 1-(4.6+0.054*Qt^1.56)/100; else: 1,LTF=1-\frac{4.6+0.054Q_t^{1.56}}{100},Piecewise power penalty,Piecewise power penalty,branch;sensitivity;direct,20
|
| 41 |
+
CMF040,growth_yield,Phenology,Critical daylength,临界日长,h,2,Po + sqrt(1 / PS),P_c=P_o+\sqrt{1/PS},Power response,Power response,direct;sensitivity;chain_2,20
|
| 42 |
+
CMF041,growth_yield,Dry matter partitioning,Green leaf partitioning index,绿叶分配指数,fraction,2,if PDT<26: 0.54-0.0046*PDT; else: 1.4532*exp(-0.0492*PDT),"PIGL=0.54-0.0046PDT\;(PDT<26),\quad1.4532e^{-0.0492PDT}\;(PDT\ge26)",Piecewise linear/exponential,Piecewise linear/exponential,sensitivity;direct;branch,21
|
| 43 |
+
CMF042,growth_yield,Dry matter partitioning,Panicle partitioning index,穗分配指数,fraction,2,(Y_grain / B_above / 0.87) / (1 + exp(-0.2804 * (PDT - 39))),PIP=\frac{HI/0.87}{1+e^{-0.2804(PDT-39)}},Multi-step sigmoid,Multi-step sigmoid,direct;branch;sensitivity,23
|
| 44 |
+
CMF043,growth_yield,Dry matter partitioning,Root partitioning index,地下部分配指数,fraction,2,1 - (-0.0000842*PDT^2 + 0.01*PDT + 0.63),PIRO=1-PISH,Residual from shoot partitioning,Residual from shoot partitioning,chain_2;sensitivity;direct,18
|
| 45 |
+
CMF044,growth_yield,Dry matter partitioning,Shoot partitioning index,地上部分配指数,fraction,2,-0.0000842 * PDT^2 + 0.01 * PDT + 0.63,PISH=-8.42\times10^{-5}PDT^2+0.01PDT+0.63,Quadratic polynomial,Quadratic polynomial,sensitivity;direct,15
|
| 46 |
+
CMF045,growth_yield,Dry matter partitioning,Stem partitioning index,茎鞘分配指数,fraction,2,1 - (if PDT<26: 0.54-0.0046*PDT; else: 1.4532*exp(-0.0492*PDT)) - (Y_grain/B_above/0.87)/(1+exp(-0.2804*(PDT-39))),PIS=1-PIGL-PIP,Residual with piecewise components,Residual with piecewise components,chain_2;sensitivity;direct,19
|
| 47 |
+
CMF046,growth_yield,Respiration,Growth respiration,生长呼吸,kg/ha/day,2,Rg * DTGA,RG=R_g\cdot DTGA,Product,Product,direct;sensitivity,11
|
| 48 |
+
CMF047,growth_yield,Photosynthesis,Intercepted photosynthetically active radiation,截获光合有效辐射,MJ/m2/day,2,PAR * (1 - exp(-k * LAI)),IPAR = PAR \cdot (1 - e^{-k \cdot LAI}),Product with exponential saturation,Product with exponential saturation,direct;sensitivity,13
|
| 49 |
+
CMF048,growth_yield,Respiration,Maintenance respiration,维持呼吸,kg/ha/day,2,(0.0091 - 0.0001 * PDT) * ABIOMASS * Q10**((T-To)/10),RM=(0.0091-0.0001\cdot PDT)\cdot ABIOMASS\cdot Q_{10}^{(T-T_o)/10},Product with Q10 temperature response,Product with Q10 temperature response,chain_2;direct;sensitivity,20
|
| 50 |
+
CMF049,growth_yield,Respiration,Maintenance respiration coefficient at optimum temperature,最适温度维持呼吸系数,d-1,4,0.0091 - 0.0001 * PDT,RM(T_o)=0.0091-0.0001PDT,Linear decline,Linear decline,direct;sensitivity,12
|
| 51 |
+
CMF050,growth_yield,Phenology,Relative photoperiod effectiveness,相对光周期效应,fraction,2,if P<=Po: 1; if P<=Po+sqrt(1/PS): 1-PS*(P-Po)^2; else: 0,"RPE=1,\;1-PS(P-P_o)^2,\;0",Piecewise quadratic,Piecewise quadratic,sensitivity;branch;direct;chain_2,29
|
| 52 |
+
CMF051,growth_yield,Phenology,Relative thermal effectiveness,相对热效应,fraction,3,(((T - Tb)/(To - Tb)) * (((Tm - T)/(Tm - To)) ** ((Tm - To)/(To - Tb)))) ** TS,RTE=\left[\frac{T-T_b}{T_o-T_b}\left(\frac{T_m-T}{T_m-T_o}\right)^{(T_m-T_o)/(T_o-T_b)}\right]^{TS},Beta temperature response,Beta temperature response,direct;branch;sensitivity,18
|
| 53 |
+
CMF052,growth_yield,Leaf area growth,Actual LAI relative growth rate,实际叶面积相对增长率,d-1,4,"RP * min(NNI, WDF)","R=RP\cdot\min(NNI,WDF)",Minimum stress multiplier,Minimum stress multiplier,chain_2;sensitivity;direct,21
|
| 54 |
+
CMF053,growth_yield,Leaf area growth,Specific leaf area,比叶面积,cm2/g,2,if GDD<=1200: (-0.0002*GDD^2-0.5604*GDD+581.04)*(SLAc/200); else: 200*(SLAc/200),SLA=(-0.0002GDD^2-0.5604GDD+581.04)(SLA_c/200),Piecewise polynomial,Piecewise polynomial,direct;sensitivity;branch,20
|
| 55 |
+
CMF054,growth_yield,Yield formation,Dry grain yield,稻谷干重产量,kg/ha,1,AWSP * grain_fraction,Y=AWSP\cdot f_{grain},Product,Product,sensitivity;direct,12
|
| 56 |
+
CMF055,environmental_response,environmental-response formula system,environmental-response daily biomass increment,环境响应日生物量增量,kg/ha/day,2,"10 * RUE * fSolar * SRAD * F_CO2 * F_Temp * min(F_Water, F_Heat)","dB=10RUEfSolarSRADF_{CO2}F_T\min(F_W,F_H)",Multiplicative minimum stress,Multiplicative minimum stress,direct;sensitivity;chain_2,18
|
| 57 |
+
CMF056,environmental_response,environmental-response formula system,environmental-response daily thermal time,每日有效积温,C day,2,"max(Tmean - Tbase, 0)","dTT=\max(T_{mean}-T_{base},0)",Maximum linear,Maximum linear,branch;direct;sensitivity,18
|
| 58 |
+
CMF057,environmental_response,environmental-response formula system,environmental-response CO2 response,环境响应二氧化碳响应,multiplier,3,"if CO2>=700: 1+CO2_RUE*350/100; else: max(CO2_RUE*CO2*0.01+1-0.01*350*CO2_RUE, 1)","F_{CO2}=f(CO2,CO2_{RUE})",Piecewise linear cap,Piecewise linear cap,branch;direct;sensitivity,21
|
| 59 |
+
CMF058,environmental_response,environmental-response formula system,environmental-response heat stress response,环境响应高温响应,fraction,3,"if Tmax<=MaxT: 1; if Tmax>ExtremeT: 0; else: max(1-(Tmax-MaxT)/(ExtremeT-MaxT), 0)","F_H=1,\;0,\;\text{or}\;1-\frac{T_{max}-MaxT}{ExtremeT-MaxT}",Piecewise linear stress,Piecewise linear stress,branch;sensitivity;direct,19
|
| 60 |
+
CMF059,environmental_response,environmental-response formula system,environmental-response solar interception fraction,环境响应光截获比例,fraction,3,"min(fSolarMax/(1+exp(-0.01*(TT-I50A))), fSolarMax/(1+exp(0.01*(TT-(Tsum-I50B))))) * min(fSolar_water, 1)","fSolar=\min(f_1,f_2)F_{solar,water}",Double logistic,Double logistic,chain_2;direct;sensitivity,18
|
| 61 |
+
CMF060,environmental_response,environmental-response formula system,environmental-response temperature response,环境响应温度响应,fraction,3,"if Tmean>=Topt: 1; else: max((Tmean-Tbase)/(Topt-Tbase), 0)","F_T=1\;\text{or}\;\max((T-T_b)/(T_o-T_b),0)",Piecewise linear,Piecewise linear,direct;branch;sensitivity,22
|
| 62 |
+
CMF061,environmental_response,environmental-response formula system,environmental-response water stress response,环境响应水分响应,response factor,3,"max(0, 1 - S_Water * ARID)","F_W=\max(0,1-S_WARID)",Maximum linear,Maximum linear,sensitivity;direct,14
|
| 63 |
+
CMF062,environmental_response,environmental-response formula system,environmental-response yield,环境响应产量,kg/ha,1,Biomass * HI,Yield=Biomass\cdot HI,Product,Product,direct;sensitivity,13
|
metadata/gold_audit.csv
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,formula_id,family,mode,level,template_id,answer,problem_sha256_16,automated_validation,in_test_split,human_problem_clear,human_formula_match,human_answer_verified,human_notes
|
| 2 |
+
CMF060_direct_t2_0001,CMF060,environmental_response,direct,2,2,0.613,042fccc52dae33de,pass,yes,yes,yes,yes,
|
| 3 |
+
CMF016_sensitivity_t0_0001,CMF016,methane_emission,sensitivity,2,0,0.021,b6a26e68802a9dee,pass,yes,yes,yes,yes,
|
| 4 |
+
CMF010_direct_t2_0001,CMF010,carbon_nitrogen_cycle,direct,1,2,0.938,0cb999a965ac93c9,pass,yes,yes,yes,yes,
|
| 5 |
+
CMF048_chain_2_t0_0001,CMF048,growth_yield,chain_2,4,0,40.55,867a19a09fb7f2b8,pass,yes,yes,yes,yes,
|
| 6 |
+
CMF058_branch_t0_0001,CMF058,environmental_response,branch,4,0,0.506,38612559d8c0ad9c,pass,yes,yes,yes,yes,
|
| 7 |
+
CMF011_sensitivity_t0_0000,CMF011,carbon_nitrogen_cycle,sensitivity,3,0,2.380,f423fe2d4b8d1405,pass,yes,yes,yes,yes,
|
| 8 |
+
CMF003_direct_t1_0000,CMF003,carbon_nitrogen_cycle,direct,1,1,69.61,c4486b08d6759bc1,pass,yes,yes,yes,yes,
|
| 9 |
+
CMF012_sensitivity_t1_0001,CMF012,carbon_nitrogen_cycle,sensitivity,3,1,0.974,2a98c683c8d4cc40,pass,yes,yes,yes,yes,
|
| 10 |
+
CMF018_direct_t0_0001,CMF018,methane_emission,direct,2,0,0.104,e5e3b76cf76badaa,pass,yes,yes,yes,yes,
|
| 11 |
+
CMF054_sensitivity_t2_0000,CMF054,growth_yield,sensitivity,2,2,4925.7,ea2149445581a94f,pass,yes,yes,yes,yes,
|
| 12 |
+
CMF052_sensitivity_t0_0000,CMF052,growth_yield,sensitivity,2,0,0.0027,04f5a1b04334a3c3,pass,yes,yes,yes,yes,
|
| 13 |
+
CMF023_sensitivity_t1_0001,CMF023,methane_emission,sensitivity,2,1,0.314,f1f1421436664b56,pass,yes,yes,yes,yes,
|
| 14 |
+
CMF050_branch_t1_0001,CMF050,growth_yield,branch,4,1,0.74,3ec425c9fb690b6e,pass,yes,yes,yes,yes,
|
| 15 |
+
CMF023_direct_t0_0000,CMF023,methane_emission,direct,1,0,0.313,bc88f40f3f9dac50,pass,yes,yes,yes,yes,
|
| 16 |
+
CMF002_sensitivity_t1_0000,CMF002,carbon_nitrogen_cycle,sensitivity,3,1,34.785,04a7d02b4fcd6f9b,pass,yes,yes,yes,yes,
|
| 17 |
+
CMF044_sensitivity_t0_0000,CMF044,growth_yield,sensitivity,2,0,0.91,7d3f58c6dda0e553,pass,yes,yes,yes,yes,
|
| 18 |
+
CMF001_direct_t0_0000,CMF001,carbon_nitrogen_cycle,direct,1,0,1.078,f388c1ca3d4db55d,pass,yes,yes,yes,yes,
|
| 19 |
+
CMF045_chain_2_t1_0000,CMF045,growth_yield,chain_2,4,1,0.62,1f30c4a0c0277ca0,pass,yes,yes,yes,yes,
|
| 20 |
+
CMF016_chain_2_t0_0000,CMF016,methane_emission,chain_2,3,0,0.009,ee7391d9e146dbd5,pass,yes,yes,yes,yes,
|
| 21 |
+
CMF019_sensitivity_t0_0000,CMF019,methane_emission,sensitivity,2,0,0.343,49a67ea264b6554f,pass,yes,yes,yes,yes,
|
| 22 |
+
CMF026_sensitivity_t0_0000,CMF026,growth_yield,sensitivity,3,0,19.42,c11a9590ff5f0ec6,pass,yes,yes,yes,yes,
|
| 23 |
+
CMF012_branch_t1_0000,CMF012,carbon_nitrogen_cycle,branch,4,1,0.739,0b6b0e604333259b,pass,yes,yes,yes,yes,
|
| 24 |
+
CMF003_direct_t2_0001,CMF003,carbon_nitrogen_cycle,direct,1,2,47.09,a838147a4d004049,pass,yes,yes,yes,yes,
|
| 25 |
+
CMF039_branch_t0_0001,CMF039,growth_yield,branch,4,0,0.91,c711cb5db2a6dfcd,pass,yes,yes,yes,yes,
|
| 26 |
+
CMF031_direct_t2_0001,CMF031,growth_yield,direct,1,2,0.98,8d28250ffa45930d,pass,yes,yes,yes,yes,
|
| 27 |
+
CMF020_direct_t2_0001,CMF020,methane_emission,direct,1,2,3.441,48e5ba64c737f53d,pass,yes,yes,yes,yes,
|
| 28 |
+
CMF017_chain_2_t1_0001,CMF017,methane_emission,chain_2,4,1,5.200,4c6bd0e3c0fab26a,pass,yes,yes,yes,yes,
|
| 29 |
+
CMF052_chain_2_t2_0000,CMF052,growth_yield,chain_2,3,2,0.0061,4c1a8130d0562f37,pass,yes,yes,yes,yes,
|
| 30 |
+
CMF037_sensitivity_t1_0001,CMF037,growth_yield,sensitivity,2,1,1.40,83c8affe4d6e0818,pass,yes,yes,yes,yes,
|
| 31 |
+
CMF042_branch_t2_0000,CMF042,growth_yield,branch,3,2,0.49,10c9285187e129b4,pass,yes,yes,yes,yes,
|
| 32 |
+
CMF018_direct_t0_0000,CMF018,methane_emission,direct,2,0,0.074,660bdd10bc097a24,pass,yes,yes,yes,yes,
|
| 33 |
+
CMF041_sensitivity_t2_0001,CMF041,growth_yield,sensitivity,3,2,0.14,4ef148d088524aa7,pass,yes,yes,yes,yes,
|
| 34 |
+
CMF002_direct_t1_0000,CMF002,carbon_nitrogen_cycle,direct,2,1,22.903,a45408f5d38137bf,pass,yes,yes,yes,yes,
|
| 35 |
+
CMF052_chain_2_t1_0001,CMF052,growth_yield,chain_2,3,1,0.0035,8950d5ae9f62a04a,pass,yes,yes,yes,yes,
|
| 36 |
+
CMF057_branch_t0_0001,CMF057,environmental_response,branch,4,0,1.630,32a8dfc1ddc519ad,pass,yes,yes,yes,yes,
|
| 37 |
+
CMF004_chain_2_t1_0001,CMF004,carbon_nitrogen_cycle,chain_2,4,1,0.656,6198e3249a68839c,pass,yes,yes,yes,yes,
|
| 38 |
+
CMF030_direct_t2_0001,CMF030,growth_yield,direct,2,2,1.00,f7ee48991f0ff85c,pass,yes,yes,yes,yes,
|
| 39 |
+
CMF062_direct_t2_0001,CMF062,environmental_response,direct,1,2,4924.7,9d508478a7ca783d,pass,yes,yes,yes,yes,
|
| 40 |
+
CMF006_direct_t2_0001,CMF006,carbon_nitrogen_cycle,direct,1,2,442.59,a33b74972afc04ae,pass,yes,yes,yes,yes,
|
| 41 |
+
CMF036_sensitivity_t1_0000,CMF036,growth_yield,sensitivity,2,1,0.493,e62f90beb8dcce48,pass,yes,yes,yes,yes,
|
| 42 |
+
CMF050_sensitivity_t0_0000,CMF050,growth_yield,sensitivity,3,0,0.00,7b22c1e9de84c965,pass,yes,yes,yes,yes,
|
| 43 |
+
CMF029_direct_t0_0001,CMF029,growth_yield,direct,1,0,1.43,480b63057226921c,pass,yes,yes,yes,yes,
|
| 44 |
+
CMF035_sensitivity_t0_0001,CMF035,growth_yield,sensitivity,3,0,0.01,c90f81f31de3ccb8,pass,yes,yes,yes,yes,
|
| 45 |
+
CMF018_sensitivity_t0_0001,CMF018,methane_emission,sensitivity,3,0,1.000,105779388b7911d7,pass,yes,yes,yes,yes,
|
| 46 |
+
CMF037_chain_2_t2_0001,CMF037,growth_yield,chain_2,3,2,8.87,81ab37cc9e23ebee,pass,yes,yes,yes,yes,
|
| 47 |
+
CMF042_branch_t2_0001,CMF042,growth_yield,branch,3,2,0.33,2d54dc5eb01d09d5,pass,yes,yes,yes,yes,
|
| 48 |
+
CMF035_sensitivity_t0_0000,CMF035,growth_yield,sensitivity,3,0,1.00,2ea50795d618f845,pass,yes,yes,yes,yes,
|
| 49 |
+
CMF005_sensitivity_t0_0000,CMF005,carbon_nitrogen_cycle,sensitivity,2,0,4.368,1458ac1794deee52,pass,yes,yes,yes,yes,
|
| 50 |
+
CMF007_chain_2_t2_0001,CMF007,carbon_nitrogen_cycle,chain_2,3,2,46.309,1b3f48ffb376e00c,pass,yes,yes,yes,yes,
|
| 51 |
+
CMF057_direct_t0_0000,CMF057,environmental_response,direct,2,0,1.406,eacf7365bef49f36,pass,yes,yes,yes,yes,
|
| 52 |
+
CMF050_direct_t1_0000,CMF050,growth_yield,direct,2,1,0.40,dcc3edb8dafb8edf,pass,yes,yes,yes,yes,
|
| 53 |
+
CMF053_direct_t1_0001,CMF053,growth_yield,direct,2,1,154.75,885c95c8ef3d46b7,pass,yes,yes,yes,yes,
|
| 54 |
+
CMF061_sensitivity_t2_0000,CMF061,environmental_response,sensitivity,2,2,0.412,1f8d7d01630cc692,pass,yes,yes,yes,yes,
|
| 55 |
+
CMF039_branch_t0_0000,CMF039,growth_yield,branch,4,0,0.90,112989edea36ddb1,pass,yes,yes,yes,yes,
|
| 56 |
+
CMF030_direct_t2_0000,CMF030,growth_yield,direct,2,2,1.00,502aba5b87e148fc,pass,yes,yes,yes,yes,
|
| 57 |
+
CMF008_branch_t2_0000,CMF008,carbon_nitrogen_cycle,branch,4,2,1.232,4612208c534fd0cf,pass,yes,yes,yes,yes,
|
| 58 |
+
CMF050_sensitivity_t1_0001,CMF050,growth_yield,sensitivity,3,1,1.00,0a8a33de8cfe8224,pass,yes,yes,yes,yes,
|
| 59 |
+
CMF060_direct_t0_0001,CMF060,environmental_response,direct,2,0,0.820,b70ba4ba6565d647,pass,yes,yes,yes,yes,
|
| 60 |
+
CMF047_direct_t2_0000,CMF047,growth_yield,direct,1,2,13.47,8e68e601080d0c50,pass,yes,yes,yes,yes,
|
| 61 |
+
CMF042_direct_t2_0000,CMF042,growth_yield,direct,1,2,0.28,04947236d53903fe,pass,yes,yes,yes,yes,
|
| 62 |
+
CMF040_direct_t2_0001,CMF040,growth_yield,direct,1,2,13.06,b077e03f04cfeaf5,pass,yes,yes,yes,yes,
|
| 63 |
+
CMF053_sensitivity_t1_0000,CMF053,growth_yield,sensitivity,3,1,270.36,210b5d1f725e7409,pass,yes,yes,yes,yes,
|
| 64 |
+
CMF016_chain_2_t1_0001,CMF016,methane_emission,chain_2,3,1,0.006,82177b021af2d85e,pass,yes,yes,yes,yes,
|
| 65 |
+
CMF037_sensitivity_t0_0001,CMF037,growth_yield,sensitivity,2,0,0.27,f24ed277f1ee7a73,pass,yes,yes,yes,yes,
|
| 66 |
+
CMF019_sensitivity_t2_0001,CMF019,methane_emission,sensitivity,2,2,0.206,625f4d9f61a70e81,pass,yes,yes,yes,yes,
|
| 67 |
+
CMF041_direct_t2_0001,CMF041,growth_yield,direct,2,2,0.15,7fded1def9fd2cf5,pass,yes,yes,yes,yes,
|
| 68 |
+
CMF007_sensitivity_t0_0000,CMF007,carbon_nitrogen_cycle,sensitivity,2,0,43.148,7bdcdf9aa14215fb,pass,yes,yes,yes,yes,
|
| 69 |
+
CMF026_sensitivity_t1_0001,CMF026,growth_yield,sensitivity,3,1,7.96,d9a1b05e88737c49,pass,yes,yes,yes,yes,
|
| 70 |
+
CMF040_sensitivity_t2_0000,CMF040,growth_yield,sensitivity,2,2,12.20,af95d6c8fa909b85,pass,yes,yes,yes,yes,
|
| 71 |
+
CMF042_direct_t2_0001,CMF042,growth_yield,direct,1,2,0.41,b3c7b6d3113d0ea4,pass,yes,yes,yes,yes,
|
| 72 |
+
CMF001_direct_t2_0000,CMF001,carbon_nitrogen_cycle,direct,1,2,1.327,b951ef4d27238d15,pass,yes,yes,yes,yes,
|
| 73 |
+
CMF042_direct_t0_0000,CMF042,growth_yield,direct,1,0,0.01,abfac17ee627e860,pass,yes,yes,yes,yes,
|
| 74 |
+
CMF041_branch_t0_0001,CMF041,growth_yield,branch,4,0,0.26,5bb0fdfb0d0b32d6,pass,yes,yes,yes,yes,
|
| 75 |
+
CMF037_chain_2_t0_0000,CMF037,growth_yield,chain_2,3,0,1.21,6257e00b71f55a00,pass,yes,yes,yes,yes,
|
| 76 |
+
CMF033_chain_2_t0_0001,CMF033,growth_yield,chain_2,3,0,410.21,d8d1742a83e07d31,pass,yes,yes,yes,yes,
|
| 77 |
+
CMF014_sensitivity_t1_0001,CMF014,carbon_nitrogen_cycle,sensitivity,3,1,1.000,0e83526d175904d1,pass,yes,yes,yes,yes,
|
| 78 |
+
CMF033_sensitivity_t1_0001,CMF033,growth_yield,sensitivity,2,1,475.26,7effb0c14d2bec8d,pass,yes,yes,yes,yes,
|
| 79 |
+
CMF038_direct_t2_0001,CMF038,growth_yield,direct,1,2,0.69,6394c484b339997f,pass,yes,yes,yes,yes,
|
| 80 |
+
CMF057_branch_t2_0000,CMF057,environmental_response,branch,4,2,1.413,9dd0190c9dcddb6c,pass,yes,yes,yes,yes,
|
| 81 |
+
CMF021_chain_2_t1_0001,CMF021,methane_emission,chain_2,3,1,1.376,d47610ee48dde0d9,pass,yes,yes,yes,yes,
|
| 82 |
+
CMF044_direct_t0_0000,CMF044,growth_yield,direct,1,0,0.70,32f25bbf4f3fcbff,pass,yes,yes,yes,yes,
|
| 83 |
+
CMF024_direct_t1_0001,CMF024,methane_emission,direct,1,1,28.04,985a92fc82f35fc0,pass,yes,yes,yes,yes,
|
| 84 |
+
CMF033_chain_2_t1_0000,CMF033,growth_yield,chain_2,3,1,295.16,71b2f8f7b9c66f8f,pass,yes,yes,yes,yes,
|
| 85 |
+
CMF050_chain_2_t2_0000,CMF050,growth_yield,chain_2,4,2,0.18,249fb22041bf889f,pass,yes,yes,yes,yes,
|
| 86 |
+
CMF060_branch_t1_0001,CMF060,environmental_response,branch,4,1,0.624,236913273dc976d2,pass,yes,yes,yes,yes,
|
| 87 |
+
CMF009_direct_t2_0000,CMF009,carbon_nitrogen_cycle,direct,2,2,1.100,5a57b3c9db3c56b2,pass,yes,yes,yes,yes,
|
| 88 |
+
CMF029_sensitivity_t1_0001,CMF029,growth_yield,sensitivity,2,1,1.37,07c4adbed2bb15d3,pass,yes,yes,yes,yes,
|
| 89 |
+
CMF044_sensitivity_t1_0001,CMF044,growth_yield,sensitivity,2,1,0.86,a9a4ef8c41f5ef63,pass,yes,yes,yes,yes,
|
| 90 |
+
CMF008_direct_t0_0001,CMF008,carbon_nitrogen_cycle,direct,2,0,2.995,1560a9668a47e0b0,pass,yes,yes,yes,yes,
|
| 91 |
+
CMF007_sensitivity_t2_0001,CMF007,carbon_nitrogen_cycle,sensitivity,2,2,28.928,8c5d64d6dedf0672,pass,yes,yes,yes,yes,
|
| 92 |
+
CMF020_direct_t1_0001,CMF020,methane_emission,direct,1,1,1.354,e2d266c85b37544a,pass,yes,yes,yes,yes,
|
| 93 |
+
CMF051_direct_t1_0001,CMF051,growth_yield,direct,2,1,0.358,93bf508277f54f44,pass,yes,yes,yes,yes,
|
| 94 |
+
CMF048_direct_t1_0000,CMF048,growth_yield,direct,2,1,14.91,7cd30d1aab937777,pass,yes,yes,yes,yes,
|
| 95 |
+
CMF060_sensitivity_t0_0001,CMF060,environmental_response,sensitivity,3,0,0.000,9ff0ef1139350686,pass,yes,yes,yes,yes,
|
| 96 |
+
CMF061_sensitivity_t0_0000,CMF061,environmental_response,sensitivity,2,0,0.425,d711c174969422f5,pass,yes,yes,yes,yes,
|
metadata/gold_audit_protocol.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CropMath v1 Gold Audit Protocol
|
| 2 |
+
|
| 3 |
+
The gold file is a 95-row audit worksheet copied from the frozen test split. It
|
| 4 |
+
is not an independent evaluation split.
|
| 5 |
+
|
| 6 |
+
For each row, verify that the problem is clear, the formula matches the intended
|
| 7 |
+
quantity and mode, and the serialized answer recomputes from the effective
|
| 8 |
+
parameters within the formula precision. Use `yes`, `no`, or `unclear` in the
|
| 9 |
+
human audit columns and record issues in `human_notes`.
|
| 10 |
+
|
| 11 |
+
If any row fails, fix the generator/calculator and rebuild the release. Do not
|
| 12 |
+
patch individual JSONL rows by hand.
|
metadata/hidden_policy.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"hidden_samples": 160,
|
| 3 |
+
"seed": 20260609,
|
| 4 |
+
"public_file": "release/cropmath-v1/hidden_public/hidden_public.jsonl",
|
| 5 |
+
"private_answer_file": "not_included_in_public_release",
|
| 6 |
+
"answer_release_policy": "question-public, answer-withheld auxiliary set; formulas, inputs and prompts are public; no hosted scoring service; disjoint IDs do not prove absence of training contamination",
|
| 7 |
+
"families": {
|
| 8 |
+
"carbon_nitrogen_cycle": 35,
|
| 9 |
+
"methane_emission": 27,
|
| 10 |
+
"growth_yield": 76,
|
| 11 |
+
"environmental_response": 22
|
| 12 |
+
},
|
| 13 |
+
"modes": {
|
| 14 |
+
"branch": 21,
|
| 15 |
+
"chain_2": 21,
|
| 16 |
+
"direct": 57,
|
| 17 |
+
"sensitivity": 61
|
| 18 |
+
},
|
| 19 |
+
"levels": {
|
| 20 |
+
"1": 28,
|
| 21 |
+
"2": 58,
|
| 22 |
+
"3": 40,
|
| 23 |
+
"4": 34
|
| 24 |
+
},
|
| 25 |
+
"public_id_overlap": 0,
|
| 26 |
+
"private_answer_verification": "not verified by this public candidate build"
|
| 27 |
+
}
|
pyproject.toml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "cropmath-public-candidate"
|
| 3 |
+
version = "0.0.0"
|
| 4 |
+
description = "Local validation environment for the CropMath public candidate"
|
| 5 |
+
requires-python = ">=3.12,<3.13"
|
| 6 |
+
dependencies = ["datasets==5.0.1"]
|
| 7 |
+
|
| 8 |
+
[dependency-groups]
|
| 9 |
+
dev = ["pytest==9.1.1"]
|
| 10 |
+
|
| 11 |
+
[tool.uv]
|
| 12 |
+
package = false
|
| 13 |
+
|
| 14 |
+
[tool.pytest.ini_options]
|
| 15 |
+
testpaths = ["tests"]
|
| 16 |
+
pythonpath = ["src", "."]
|
scripts/validate_cropmath_release.py
ADDED
|
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Validate the CropMath Hugging Face release package."""
|
| 3 |
+
|
| 4 |
+
from __future__ import annotations
|
| 5 |
+
|
| 6 |
+
import argparse
|
| 7 |
+
import json
|
| 8 |
+
from pathlib import Path
|
| 9 |
+
import re
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
EXPECTED = {
|
| 13 |
+
"default": {"dev": 252, "test": 751, "gold": 95},
|
| 14 |
+
"eval_prompts": {"dev": 1512, "test": 4506, "gold": 570},
|
| 15 |
+
}
|
| 16 |
+
EXPECTED_HIDDEN_PUBLIC = 160
|
| 17 |
+
CONDITIONS = {"C", "K_name", "K_formula", "K_domain", "K_distractor", "K_wrong"}
|
| 18 |
+
PUBLIC_CONTENT_SUFFIXES = {".json", ".jsonl", ".csv", ".yaml", ".yml"}
|
| 19 |
+
FORBIDDEN_PUBLIC_CONTENT = {
|
| 20 |
+
"specific framework name": re.compile(
|
| 21 |
+
r"RiceGrow|CH4MOD|AgroC|\bSIMPLE\b|\bDSSAT\b|\bAPSIM\b|"
|
| 22 |
+
r"\bWOFOST\b|\bORYZA\b|\bDNDC\b|\bCENTURY\b|\bDayCent\b|"
|
| 23 |
+
r"\bCERES\b|\bAquaCrop\b|\bSTICS\b|\bEPIC\b"
|
| 24 |
+
),
|
| 25 |
+
"source-code wording": re.compile(
|
| 26 |
+
r"source[ -]?code|codebase|源代码|源码|代码溯源|代码实现|代码位置",
|
| 27 |
+
re.IGNORECASE,
|
| 28 |
+
),
|
| 29 |
+
"implementation file reference": re.compile(
|
| 30 |
+
r"(?:^|[\s'\"])(?:src|scripts)/[^\s'\"]+|\b[^\s/]+\.(?:py|R)\b",
|
| 31 |
+
re.IGNORECASE,
|
| 32 |
+
),
|
| 33 |
+
"generated citation": re.compile(
|
| 34 |
+
r"\bet\s+al\.?\b|\bdoi\s*:|https?://|\bcited in\b|\bcitation\b",
|
| 35 |
+
re.IGNORECASE,
|
| 36 |
+
),
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
# Code-area scan: catches model-name and provenance leaks in the public repo's
|
| 40 |
+
# Python/Markdown sources. Unlike FORBIDDEN_PUBLIC_CONTENT this does NOT reject
|
| 41 |
+
# legitimate ``.py`` references (code files legitimately live in the repo) and
|
| 42 |
+
# does NOT reject generic URLs (eval scripts reference model hubs); it focuses
|
| 43 |
+
# on the specific residue that would reveal the private formula provenance.
|
| 44 |
+
REPO_ROOT_SCAN_DIRS = ("src", "evaluation", "scripts", "tests")
|
| 45 |
+
REPO_ROOT_SCAN_FILES = ("README.md", "AGENTS.md")
|
| 46 |
+
REPO_ROOT_CODE_SUFFIXES = {".py", ".md", ".yaml", ".yml", ".sh"}
|
| 47 |
+
REPO_ROOT_FORBIDDEN = {
|
| 48 |
+
"specific framework name": re.compile(
|
| 49 |
+
r"RiceGrow|CH4MOD|AgroC|\bSIMPLE crop\b|\bSIMPLE model\b|"
|
| 50 |
+
r"\bDSSAT\b|\bAPSIM\b|\bWOFOST\b|\bORYZA\b|\bDNDC\b|"
|
| 51 |
+
r"\bCENTURY\b|\bDayCent\b|\bCERES\b|\bAquaCrop\b|\bSTICS\b|\bEPIC\b"
|
| 52 |
+
),
|
| 53 |
+
"provenance citation in code": re.compile(
|
| 54 |
+
r"\b(?:Tang|Huang|Herbst|Zhao)\s+(?:19|20)\d{2}\b|"
|
| 55 |
+
r"\bfrom\s+(?:CH4MOD|RiceGrow|AgroC)\s+code\b|"
|
| 56 |
+
r"\bCommon\.R\b|\bfunc_[A-Za-z][A-Za-z0-9_]+",
|
| 57 |
+
re.IGNORECASE,
|
| 58 |
+
),
|
| 59 |
+
"implementation file reference": re.compile(
|
| 60 |
+
r"\bcropmath\.formulas\b|\bcropmath\.generator\b|"
|
| 61 |
+
r"\b[^\s/]+\.R\b",
|
| 62 |
+
re.IGNORECASE,
|
| 63 |
+
),
|
| 64 |
+
}
|
| 65 |
+
# Files that legitimately encode the forbidden patterns as a *defense* (the
|
| 66 |
+
# validator itself and the clean-release builder, both of which carry the
|
| 67 |
+
# blocklist). Scanned but whitelisted by relative path so the defense keeps
|
| 68 |
+
# working without false positives.
|
| 69 |
+
REPO_ROOT_SCAN_ALLOWLIST = {
|
| 70 |
+
"scripts/validate_cropmath_release.py",
|
| 71 |
+
"scripts/build_clean_public_release.py",
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
def load_jsonl(path: Path) -> list[dict]:
|
| 76 |
+
with path.open(encoding="utf-8") as f:
|
| 77 |
+
return [json.loads(line) for line in f if line.strip()]
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
def require(condition: bool, message: str, issues: list[str]) -> None:
|
| 81 |
+
if not condition:
|
| 82 |
+
issues.append(message)
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
def validate_public_content(release_dir: Path) -> list[str]:
|
| 86 |
+
"""Reject private implementation and citation residue in public data files."""
|
| 87 |
+
issues: list[str] = []
|
| 88 |
+
for path in sorted(release_dir.rglob("*")):
|
| 89 |
+
if not path.is_file() or path.suffix.lower() not in PUBLIC_CONTENT_SUFFIXES:
|
| 90 |
+
continue
|
| 91 |
+
text = path.read_text(encoding="utf-8", errors="replace")
|
| 92 |
+
for label, pattern in FORBIDDEN_PUBLIC_CONTENT.items():
|
| 93 |
+
match = pattern.search(text)
|
| 94 |
+
if match:
|
| 95 |
+
relative = path.relative_to(release_dir)
|
| 96 |
+
issues.append(f"{relative}: {label}: {match.group(0)!r}")
|
| 97 |
+
return issues
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
def validate_repo_root_content(repo_root: Path) -> list[str]:
|
| 101 |
+
"""Reject private provenance residue in the public repo's own source files.
|
| 102 |
+
|
| 103 |
+
Scans ``src/``, ``evaluation/``, ``scripts/``, ``tests/`` plus top-level
|
| 104 |
+
markdown for crop-model names, paper-year citations, and implementation
|
| 105 |
+
references that would reveal the private formula provenance. The validator
|
| 106 |
+
itself is allowlisted so its defensive blocklist keeps working.
|
| 107 |
+
"""
|
| 108 |
+
issues: list[str] = []
|
| 109 |
+
candidates: list[Path] = []
|
| 110 |
+
for name in REPO_ROOT_SCAN_DIRS:
|
| 111 |
+
directory = repo_root / name
|
| 112 |
+
if directory.is_dir():
|
| 113 |
+
for path in directory.rglob("*"):
|
| 114 |
+
if path.is_file() and path.suffix.lower() in REPO_ROOT_CODE_SUFFIXES:
|
| 115 |
+
candidates.append(path)
|
| 116 |
+
for name in REPO_ROOT_SCAN_FILES:
|
| 117 |
+
path = repo_root / name
|
| 118 |
+
if path.is_file():
|
| 119 |
+
candidates.append(path)
|
| 120 |
+
for path in sorted(candidates):
|
| 121 |
+
try:
|
| 122 |
+
relative = path.relative_to(repo_root).as_posix()
|
| 123 |
+
except ValueError:
|
| 124 |
+
relative = str(path)
|
| 125 |
+
if relative in REPO_ROOT_SCAN_ALLOWLIST:
|
| 126 |
+
continue
|
| 127 |
+
text = path.read_text(encoding="utf-8", errors="replace")
|
| 128 |
+
for label, pattern in REPO_ROOT_FORBIDDEN.items():
|
| 129 |
+
match = pattern.search(text)
|
| 130 |
+
if match:
|
| 131 |
+
issues.append(f"{relative}: {label}: {match.group(0)!r}")
|
| 132 |
+
return issues
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
def validate_jsonl(release_dir: Path) -> list[str]:
|
| 136 |
+
issues: list[str] = []
|
| 137 |
+
rows: dict[tuple[str, str], list[dict]] = {}
|
| 138 |
+
for config, split_counts in EXPECTED.items():
|
| 139 |
+
for split, expected_n in split_counts.items():
|
| 140 |
+
path = release_dir / "data" / config / f"{split}.jsonl"
|
| 141 |
+
require(path.exists(), f"missing file: {path}", issues)
|
| 142 |
+
if not path.exists():
|
| 143 |
+
continue
|
| 144 |
+
data = load_jsonl(path)
|
| 145 |
+
rows[(config, split)] = data
|
| 146 |
+
ids = [row["id"] for row in data]
|
| 147 |
+
require(len(data) == expected_n, f"{config}/{split}: {len(data)} rows, expected {expected_n}", issues)
|
| 148 |
+
require(len(ids) == len(set(ids)), f"{config}/{split}: duplicate IDs", issues)
|
| 149 |
+
require(all(row.get("answer") not in (None, "") for row in data), f"{config}/{split}: missing answer", issues)
|
| 150 |
+
if config == "eval_prompts":
|
| 151 |
+
require(all(row.get("prompt") for row in data), f"{config}/{split}: missing prompt", issues)
|
| 152 |
+
require({row.get("condition") for row in data} <= CONDITIONS, f"{config}/{split}: invalid condition", issues)
|
| 153 |
+
|
| 154 |
+
dev_ids = {row["id"] for row in rows.get(("default", "dev"), [])}
|
| 155 |
+
test_ids = {row["id"] for row in rows.get(("default", "test"), [])}
|
| 156 |
+
gold_ids = {row["id"] for row in rows.get(("default", "gold"), [])}
|
| 157 |
+
require(not (dev_ids & test_ids), "default/dev and default/test overlap", issues)
|
| 158 |
+
require(gold_ids <= test_ids, "default/gold is not a subset of default/test", issues)
|
| 159 |
+
|
| 160 |
+
for split in ["dev", "test", "gold"]:
|
| 161 |
+
default_ids = {row["id"] for row in rows.get(("default", split), [])}
|
| 162 |
+
eval_rows = rows.get(("eval_prompts", split), [])
|
| 163 |
+
eval_sample_ids = [row["sample_id"] for row in eval_rows]
|
| 164 |
+
require(set(eval_sample_ids) == default_ids, f"eval_prompts/{split}: sample IDs do not match default/{split}", issues)
|
| 165 |
+
for sample_id in default_ids:
|
| 166 |
+
sample_conditions = {row["condition"] for row in eval_rows if row["sample_id"] == sample_id}
|
| 167 |
+
require(sample_conditions == CONDITIONS, f"eval_prompts/{split}: {sample_id} does not have all six conditions", issues)
|
| 168 |
+
|
| 169 |
+
hidden_path = release_dir / "hidden_public" / "hidden_public.jsonl"
|
| 170 |
+
require(hidden_path.exists(), "missing hidden public file", issues)
|
| 171 |
+
if hidden_path.exists():
|
| 172 |
+
hidden_rows = load_jsonl(hidden_path)
|
| 173 |
+
hidden_ids = {row["id"] for row in hidden_rows}
|
| 174 |
+
require(len(hidden_rows) == EXPECTED_HIDDEN_PUBLIC, f"hidden_public: {len(hidden_rows)} rows, expected {EXPECTED_HIDDEN_PUBLIC}", issues)
|
| 175 |
+
require(len(hidden_rows) == len(hidden_ids), "hidden_public: duplicate IDs", issues)
|
| 176 |
+
require(not (hidden_ids & (dev_ids | test_ids | gold_ids)), "hidden_public overlaps dev/test/gold IDs", issues)
|
| 177 |
+
forbidden = {"answer", "solution", "effective_parameters", "answer_float"}
|
| 178 |
+
leaked = [row["id"] for row in hidden_rows if forbidden & set(row)]
|
| 179 |
+
require(not leaked, f"hidden_public leaks answer-bearing fields: {leaked[:5]}", issues)
|
| 180 |
+
require(all(row.get("answer_hidden") is True for row in hidden_rows), "hidden_public rows must set answer_hidden=true", issues)
|
| 181 |
+
bad_sensitivity = [row["id"] for row in hidden_rows if row.get("mode") == "sensitivity" and not row.get("change")]
|
| 182 |
+
require(not bad_sensitivity, f"hidden_public sensitivity rows missing change: {bad_sensitivity[:5]}", issues)
|
| 183 |
+
|
| 184 |
+
private_markers = list(release_dir.rglob("*private*")) + list(release_dir.rglob("*answer*.jsonl"))
|
| 185 |
+
leaked_private = [str(path.relative_to(release_dir)) for path in private_markers if "hidden_public" not in str(path)]
|
| 186 |
+
require(not leaked_private, f"private answer-like files found in public release: {leaked_private}", issues)
|
| 187 |
+
|
| 188 |
+
return issues
|
| 189 |
+
|
| 190 |
+
|
| 191 |
+
def validate_hf_loader(release_dir: Path) -> list[str]:
|
| 192 |
+
try:
|
| 193 |
+
from datasets import load_dataset
|
| 194 |
+
except ImportError:
|
| 195 |
+
return ["datasets is not installed; HF loader validation requires this dependency"]
|
| 196 |
+
|
| 197 |
+
issues: list[str] = []
|
| 198 |
+
for config, split_counts in EXPECTED.items():
|
| 199 |
+
dataset = load_dataset(str(release_dir), config)
|
| 200 |
+
observed = {split: len(dataset[split]) for split in split_counts}
|
| 201 |
+
if observed != split_counts:
|
| 202 |
+
issues.append(f"HF loader {config}: {observed}, expected {split_counts}")
|
| 203 |
+
hidden_dataset = load_dataset(str(release_dir), "hidden_public")
|
| 204 |
+
hidden_observed = len(hidden_dataset["hidden_public"])
|
| 205 |
+
if hidden_observed != EXPECTED_HIDDEN_PUBLIC:
|
| 206 |
+
issues.append(f"HF loader hidden_public: {hidden_observed}, expected {EXPECTED_HIDDEN_PUBLIC}")
|
| 207 |
+
return issues
|
| 208 |
+
|
| 209 |
+
|
| 210 |
+
def main() -> None:
|
| 211 |
+
parser = argparse.ArgumentParser(description="Validate CropMath release/cropmath-v1")
|
| 212 |
+
parser.add_argument("--release-dir", default="release/cropmath-v1")
|
| 213 |
+
parser.add_argument("--skip-hf-loader", action="store_true")
|
| 214 |
+
parser.add_argument(
|
| 215 |
+
"--no-scan-repo-root",
|
| 216 |
+
dest="scan_repo_root",
|
| 217 |
+
action="store_false",
|
| 218 |
+
default=True,
|
| 219 |
+
help="Skip scanning the public repo source tree for provenance residue.",
|
| 220 |
+
)
|
| 221 |
+
args = parser.parse_args()
|
| 222 |
+
|
| 223 |
+
release_dir = Path(args.release_dir).resolve()
|
| 224 |
+
repo_root = release_dir.parents[1] if release_dir.name == "cropmath-v1" else Path.cwd().resolve()
|
| 225 |
+
try:
|
| 226 |
+
release_label = str(release_dir.relative_to(Path.cwd().resolve()))
|
| 227 |
+
except ValueError:
|
| 228 |
+
release_label = str(Path(args.release_dir))
|
| 229 |
+
issues = validate_jsonl(release_dir)
|
| 230 |
+
issues.extend(validate_public_content(release_dir))
|
| 231 |
+
repo_root_issues: list[str] = []
|
| 232 |
+
if args.scan_repo_root:
|
| 233 |
+
repo_root_issues = validate_repo_root_content(repo_root)
|
| 234 |
+
hf_issues = [] if args.skip_hf_loader else validate_hf_loader(release_dir)
|
| 235 |
+
all_hard_issues = issues + repo_root_issues + hf_issues
|
| 236 |
+
|
| 237 |
+
report = {
|
| 238 |
+
"release_dir": release_label,
|
| 239 |
+
"jsonl_pass": not issues,
|
| 240 |
+
"hf_loader_pass": None if args.skip_hf_loader else not hf_issues,
|
| 241 |
+
"repo_root_scan_pass": None if not args.scan_repo_root else not repo_root_issues,
|
| 242 |
+
"issues": issues + repo_root_issues,
|
| 243 |
+
"hf_loader_issues": hf_issues,
|
| 244 |
+
}
|
| 245 |
+
print(json.dumps(report, ensure_ascii=False, indent=2))
|
| 246 |
+
if all_hard_issues:
|
| 247 |
+
raise SystemExit(1)
|
| 248 |
+
|
| 249 |
+
|
| 250 |
+
if __name__ == "__main__":
|
| 251 |
+
main()
|
scripts/validate_formula_catalog.py
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Validate CropMath clean formula catalog metadata."""
|
| 3 |
+
|
| 4 |
+
from __future__ import annotations
|
| 5 |
+
|
| 6 |
+
import argparse
|
| 7 |
+
import csv
|
| 8 |
+
import json
|
| 9 |
+
from pathlib import Path
|
| 10 |
+
import re
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
REQUIRED_FIELDS = [
|
| 14 |
+
"formula_id",
|
| 15 |
+
"family",
|
| 16 |
+
"name_en",
|
| 17 |
+
"unit",
|
| 18 |
+
"precision",
|
| 19 |
+
"expression",
|
| 20 |
+
"latex",
|
| 21 |
+
"math_type",
|
| 22 |
+
"sample_count",
|
| 23 |
+
]
|
| 24 |
+
|
| 25 |
+
EXPECTED_FORMULAS = 62
|
| 26 |
+
PUBLIC_ID_RE = re.compile(r"CMF\d{3}")
|
| 27 |
+
PUBLIC_CATEGORIES = {
|
| 28 |
+
"growth_yield",
|
| 29 |
+
"carbon_nitrogen_cycle",
|
| 30 |
+
"methane_emission",
|
| 31 |
+
"environmental_response",
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
def main() -> None:
|
| 36 |
+
parser = argparse.ArgumentParser(description="Validate clean formula catalog table")
|
| 37 |
+
parser.add_argument("--path", default="release/cropmath-v1/metadata/formula_catalog.csv")
|
| 38 |
+
args = parser.parse_args()
|
| 39 |
+
|
| 40 |
+
path = Path(args.path)
|
| 41 |
+
issues: list[str] = []
|
| 42 |
+
with path.open(encoding="utf-8") as f:
|
| 43 |
+
rows = list(csv.DictReader(f))
|
| 44 |
+
|
| 45 |
+
ids = [row.get("formula_id", "") for row in rows]
|
| 46 |
+
if len(ids) != len(set(ids)):
|
| 47 |
+
issues.append("duplicate formula_id rows")
|
| 48 |
+
if len(ids) != EXPECTED_FORMULAS:
|
| 49 |
+
issues.append(f"formula count {len(ids)}, expected {EXPECTED_FORMULAS}")
|
| 50 |
+
invalid_ids = [formula_id for formula_id in ids if not PUBLIC_ID_RE.fullmatch(formula_id)]
|
| 51 |
+
if invalid_ids:
|
| 52 |
+
issues.append(f"invalid public formula IDs: {invalid_ids[:5]}")
|
| 53 |
+
|
| 54 |
+
for row in rows:
|
| 55 |
+
fid = row.get("formula_id", "")
|
| 56 |
+
missing = [field for field in REQUIRED_FIELDS if not str(row.get(field, "")).strip()]
|
| 57 |
+
if missing:
|
| 58 |
+
issues.append(f"{fid}: missing required fields {missing}")
|
| 59 |
+
if row.get("family") not in PUBLIC_CATEGORIES:
|
| 60 |
+
issues.append(f"{fid}: invalid public category {row.get('family')!r}")
|
| 61 |
+
|
| 62 |
+
report = {
|
| 63 |
+
"path": str(path),
|
| 64 |
+
"formulas": len(rows),
|
| 65 |
+
"expected_formulas": EXPECTED_FORMULAS,
|
| 66 |
+
"pass": not issues,
|
| 67 |
+
"issues": issues,
|
| 68 |
+
}
|
| 69 |
+
print(json.dumps(report, ensure_ascii=False, indent=2))
|
| 70 |
+
if issues:
|
| 71 |
+
raise SystemExit(1)
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
if __name__ == "__main__":
|
| 75 |
+
main()
|
tests/test_dataset_loading.py
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Load real local configurations and check their relationships in either package."""
|
| 2 |
+
|
| 3 |
+
from pathlib import Path
|
| 4 |
+
|
| 5 |
+
from datasets import load_dataset
|
| 6 |
+
import pytest
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
ROOT = Path(__file__).resolve().parents[1]
|
| 10 |
+
DATA = ROOT / "release" / "cropmath-v1" if (ROOT / "release" / "cropmath-v1").is_dir() else ROOT
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
@pytest.fixture(scope="module")
|
| 14 |
+
def configurations():
|
| 15 |
+
return {name: load_dataset(str(DATA), name) for name in ("default", "eval_prompts", "hidden_public")}
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
def test_actual_loader_split_sizes(configurations):
|
| 19 |
+
expected = {
|
| 20 |
+
"default": {"dev": 252, "test": 751, "gold": 95},
|
| 21 |
+
"eval_prompts": {"dev": 1512, "test": 4506, "gold": 570},
|
| 22 |
+
"hidden_public": {"hidden_public": 160},
|
| 23 |
+
}
|
| 24 |
+
for name, splits in expected.items():
|
| 25 |
+
assert {split: len(rows) for split, rows in configurations[name].items()} == splits
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def test_public_pairing_and_gold_subset(configurations):
|
| 29 |
+
default = configurations["default"]
|
| 30 |
+
dev, test, gold = ({row["id"] for row in default[split]} for split in ("dev", "test", "gold"))
|
| 31 |
+
assert not dev & test
|
| 32 |
+
assert gold <= test
|
| 33 |
+
for split in ("dev", "test", "gold"):
|
| 34 |
+
rows = configurations["eval_prompts"][split]
|
| 35 |
+
grouped = {}
|
| 36 |
+
for row in rows:
|
| 37 |
+
assert (row["sample_id"], row["condition"]) not in grouped
|
| 38 |
+
grouped[row["sample_id"], row["condition"]] = row["answer_float"]
|
| 39 |
+
for row in default[split]:
|
| 40 |
+
answers = [grouped[row["id"], condition] for condition in
|
| 41 |
+
("C", "K_name", "K_formula", "K_domain", "K_distractor", "K_wrong")]
|
| 42 |
+
assert answers == [float(row["answer"])] * 6
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
def test_auxiliary_set_has_questions_but_no_labels(configurations):
|
| 46 |
+
rows = configurations["hidden_public"]["hidden_public"]
|
| 47 |
+
ids = {row["id"] for row in rows}
|
| 48 |
+
assert len(ids) == 160
|
| 49 |
+
default = configurations["default"]
|
| 50 |
+
assert not ids & {row["id"] for split in default.values() for row in split}
|
| 51 |
+
for row in rows:
|
| 52 |
+
assert not {"answer", "answer_float", "solution", "ground_truth", "effective_parameters"} & row.keys()
|
| 53 |
+
assert row["answer_hidden"] is True
|
| 54 |
+
assert row["formula"]["expression"] and row["parameters"] and row["prompts"]
|
uv.lock
ADDED
|
@@ -0,0 +1,672 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version = 1
|
| 2 |
+
revision = 3
|
| 3 |
+
requires-python = "==3.12.*"
|
| 4 |
+
resolution-markers = [
|
| 5 |
+
"sys_platform == 'win32'",
|
| 6 |
+
"sys_platform == 'emscripten'",
|
| 7 |
+
"sys_platform != 'emscripten' and sys_platform != 'win32'",
|
| 8 |
+
]
|
| 9 |
+
|
| 10 |
+
[[package]]
|
| 11 |
+
name = "aiohappyeyeballs"
|
| 12 |
+
version = "2.7.1"
|
| 13 |
+
source = { registry = "https://pypi.org/simple" }
|
| 14 |
+
sdist = { url = "https://files.pythonhosted.org/packages/ce/f4/eec0465c2f67b2664688d0240b3212d5196fd89e741df67ddb81f8d35658/aiohappyeyeballs-2.7.1.tar.gz", hash = "sha256:065665c041c42a5938ed220bdcd7230f22527fbec085e1853d2402c8a3615d9d", size = 24757, upload-time = "2026-07-01T17:11:55.501Z" }
|
| 15 |
+
wheels = [
|
| 16 |
+
{ url = "https://files.pythonhosted.org/packages/71/43/1947f06babed6b3f1d7f38b0c767f52df66bfb2bc10b468c4a7de9eceff2/aiohappyeyeballs-2.7.1-py3-none-any.whl", hash = "sha256:9243213661e29250eb41368e5daa826fc017156c3b8a11440826b2e3ed376472", size = 15038, upload-time = "2026-07-01T17:11:54.055Z" },
|
| 17 |
+
]
|
| 18 |
+
|
| 19 |
+
[[package]]
|
| 20 |
+
name = "aiohttp"
|
| 21 |
+
version = "3.14.3"
|
| 22 |
+
source = { registry = "https://pypi.org/simple" }
|
| 23 |
+
dependencies = [
|
| 24 |
+
{ name = "aiohappyeyeballs" },
|
| 25 |
+
{ name = "aiosignal" },
|
| 26 |
+
{ name = "attrs" },
|
| 27 |
+
{ name = "frozenlist" },
|
| 28 |
+
{ name = "multidict" },
|
| 29 |
+
{ name = "propcache" },
|
| 30 |
+
{ name = "typing-extensions" },
|
| 31 |
+
{ name = "yarl" },
|
| 32 |
+
]
|
| 33 |
+
sdist = { url = "https://files.pythonhosted.org/packages/58/d9/22ce5786ac0c1653ae8b6c23bded02c1686d11f0dbb45b31ce128e0df985/aiohttp-3.14.3.tar.gz", hash = "sha256:9491196535a88924a60afd5b5f434b5b203b6cc616250878dbdb223a8f7844bc", size = 7971213, upload-time = "2026-07-23T01:57:27.037Z" }
|
| 34 |
+
wheels = [
|
| 35 |
+
{ url = "https://files.pythonhosted.org/packages/18/d4/eb96299230e20acf2efae207cb8d69051f1f68e357e5ea5e479bf6fb097a/aiohttp-3.14.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:39aded8c7f3b935b54aab1d8d73c70ec0ee2d3ec3b943e0e86611bc150ba47f5", size = 754690, upload-time = "2026-07-23T01:53:47.332Z" },
|
| 36 |
+
{ url = "https://files.pythonhosted.org/packages/88/11/e7a70a209eb9a067c0d3212b518a0134e3484f5178c7533878b6b514d469/aiohttp-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5bcb6ff3fdab1258a192679ff1a05d44f59626430aa05cd1a9d2447423599228", size = 509484, upload-time = "2026-07-23T01:53:51.159Z" },
|
| 37 |
+
{ url = "https://files.pythonhosted.org/packages/30/07/4bbc222cc8dbe31d4c3e8a5baad2286e4d42026ac0c570027b89afce6344/aiohttp-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:617105e2c3018ee38d0c8ce5ee3c84f621a6d8b9f723202aacaff28449ca91ee", size = 511949, upload-time = "2026-07-23T01:53:55.083Z" },
|
| 38 |
+
{ url = "https://files.pythonhosted.org/packages/54/b9/42e74c46b7b7c794b995bbc1f573fb48950c38b19d8600c62a6804ee2d67/aiohttp-3.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f631fe87a6f30df5fbe6d79640b25e4cffb38c31c7fb6f10871517b84b0f8c1a", size = 1765282, upload-time = "2026-07-23T01:53:59.662Z" },
|
| 39 |
+
{ url = "https://files.pythonhosted.org/packages/6b/ed/62bc4d74363ad346d518e0720363a949f63e2e23439a79eb5813d4d29bb3/aiohttp-3.14.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a94dbaae5ae27bd849c93570669bff91e0510f33a80805738e3de72a7be0447b", size = 1741511, upload-time = "2026-07-23T01:54:04.063Z" },
|
| 40 |
+
{ url = "https://files.pythonhosted.org/packages/d0/9f/181e8a8bc79e47d13c7fc4540bd7a3b729d9505609c61f392a8dd2fbfe55/aiohttp-3.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8f2f1c4c032c7cedd7d8da6f54c97b70266c6570c3108d3fdffee7188bb70529", size = 1810680, upload-time = "2026-07-23T01:54:09.882Z" },
|
| 41 |
+
{ url = "https://files.pythonhosted.org/packages/5c/9a/dec94d6ad694552fe3424e3f1928d7a606a5d9d9433a04e7ecdd9d38ae7f/aiohttp-3.14.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ea05e1f97ceea523942d9b2a7d7c0359d781d683d6b043f5943a602b14da4787", size = 1905646, upload-time = "2026-07-23T01:54:13.475Z" },
|
| 42 |
+
{ url = "https://files.pythonhosted.org/packages/52/b7/7cd31f29d6055bd711ae6e669367fba6f5ae9de463910a793e30556a8db7/aiohttp-3.14.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:543906c127fb1d929b95076db19b83fa2d46751006ff1e23b093aa5ac4d8db42", size = 1792122, upload-time = "2026-07-23T01:54:15.752Z" },
|
| 43 |
+
{ url = "https://files.pythonhosted.org/packages/66/73/10b1ef93afa61f4963c746257b70ced619cf31a4798671de5fdb2608501d/aiohttp-3.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0a5ff2dfbb9ce645fa5b8ef3e02c6c0b9cc3f6030ff863d0c51fffc50cb5541b", size = 1591127, upload-time = "2026-07-23T01:54:19.489Z" },
|
| 44 |
+
{ url = "https://files.pythonhosted.org/packages/49/ed/3b203fa6de1b338c14acdc06bf6ca9b043b7944f005966958c2ced932cde/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:041badb8f84396357c4d3ad26de6afd7a32b112f43d3c63045c0c8278cfd2043", size = 1725210, upload-time = "2026-07-23T01:54:24.129Z" },
|
| 45 |
+
{ url = "https://files.pythonhosted.org/packages/28/b7/1c2aab8c706436dcc28598452488ac9cd7c409da815237c28c27d58993e6/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:530125ee1163c4219af35dc3aa1206e541e7b31b6efc1a3f93b70a136f65d427", size = 1764848, upload-time = "2026-07-23T01:54:27.973Z" },
|
| 46 |
+
{ url = "https://files.pythonhosted.org/packages/54/50/94c28f08b131c4bf10984ea2c7a536c9920608bb2d6e7f95642c30cc87b7/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c8653fd547c93a61aadc612007790f5555cdd18946fa48cf45e26d8ea4ea473d", size = 1777102, upload-time = "2026-07-23T01:54:31.775Z" },
|
| 47 |
+
{ url = "https://files.pythonhosted.org/packages/13/d4/e7d09ba7d345fb2d74440fd2fa033c5e079fac05552927705986f41a364f/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:89176250f686cb9853c0fb7ead90e639e915b84a6f43eedc2a4e7ec21f1037f0", size = 1580205, upload-time = "2026-07-23T01:54:34.518Z" },
|
| 48 |
+
{ url = "https://files.pythonhosted.org/packages/a3/84/072a91d68e1e1eb587985b54baab94221277f877e8ef274fc213a0ceae28/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3a26434dafe408229ff3403458ca58de24fb51936504decac49ce6755f77e59d", size = 1797219, upload-time = "2026-07-23T01:54:36.995Z" },
|
| 49 |
+
{ url = "https://files.pythonhosted.org/packages/e0/eb/aad34e897e668424d6e995da5dff8a4a09af93363d3392488772957a63aa/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d1558173930a5a8d3069cee5c92fc91c87c4dbcb099debbb3622053717145a19", size = 1768629, upload-time = "2026-07-23T01:54:40.103Z" },
|
| 50 |
+
{ url = "https://files.pythonhosted.org/packages/b6/2b/6bb88ddba0fecd9122aa3ebcad25996cf6c083a4a7040dbb3a4f97972af6/aiohttp-3.14.3-cp312-cp312-win32.whl", hash = "sha256:16100ad3ab8d649fdfbee87602d9d2dcdca9df0b9eda8a1b5fdc0d41f96da559", size = 451481, upload-time = "2026-07-23T01:54:42.547Z" },
|
| 51 |
+
{ url = "https://files.pythonhosted.org/packages/76/9b/f2f8f108da17ecef2cc3efc424e8b7ad3782b1a8360f7b8eae8ced84f6ea/aiohttp-3.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:33a2d7c28d33797a2e99923dffa63f83d908a19b6bf26cfe80fa790aa5e1a75a", size = 476845, upload-time = "2026-07-23T01:54:44.853Z" },
|
| 52 |
+
{ url = "https://files.pythonhosted.org/packages/3e/44/28dac80a8941b604f4da10ce21097614ca1bf905ce93dca28d8d7de9c1e7/aiohttp-3.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:362a3fd481769cac1a824514bcd86fda51c65e8fe6e051099e008fddde6db17c", size = 448050, upload-time = "2026-07-23T01:54:47.087Z" },
|
| 53 |
+
]
|
| 54 |
+
|
| 55 |
+
[[package]]
|
| 56 |
+
name = "aiosignal"
|
| 57 |
+
version = "1.4.0"
|
| 58 |
+
source = { registry = "https://pypi.org/simple" }
|
| 59 |
+
dependencies = [
|
| 60 |
+
{ name = "frozenlist" },
|
| 61 |
+
{ name = "typing-extensions" },
|
| 62 |
+
]
|
| 63 |
+
sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" }
|
| 64 |
+
wheels = [
|
| 65 |
+
{ url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" },
|
| 66 |
+
]
|
| 67 |
+
|
| 68 |
+
[[package]]
|
| 69 |
+
name = "anyio"
|
| 70 |
+
version = "4.15.0"
|
| 71 |
+
source = { registry = "https://pypi.org/simple" }
|
| 72 |
+
dependencies = [
|
| 73 |
+
{ name = "idna" },
|
| 74 |
+
{ name = "typing-extensions" },
|
| 75 |
+
]
|
| 76 |
+
sdist = { url = "https://files.pythonhosted.org/packages/ea/9a/c15a60547004a3f3cea20296c934f827ddd7bdba225a2e7e9fcb5ec48c80/anyio-4.15.0.tar.gz", hash = "sha256:b5c620ed540725e2579c31b17bb995b3bf02c9281c9cace04c7d186380bab85e", size = 276504, upload-time = "2026-09-02T21:46:36.957Z" }
|
| 77 |
+
wheels = [
|
| 78 |
+
{ url = "https://files.pythonhosted.org/packages/21/a6/2b21ce5ebe4d8938a247c9b0dbb7271566ae559b01795c83ea4bb2660ed7/anyio-4.15.0-py3-none-any.whl", hash = "sha256:7ecd9937369ffce8bba0b5ccb9b3a9507b101b0ed50256aecfbab27e6c2acb99", size = 131908, upload-time = "2026-09-02T21:46:35.485Z" },
|
| 79 |
+
]
|
| 80 |
+
|
| 81 |
+
[[package]]
|
| 82 |
+
name = "attrs"
|
| 83 |
+
version = "26.1.0"
|
| 84 |
+
source = { registry = "https://pypi.org/simple" }
|
| 85 |
+
sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" }
|
| 86 |
+
wheels = [
|
| 87 |
+
{ url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" },
|
| 88 |
+
]
|
| 89 |
+
|
| 90 |
+
[[package]]
|
| 91 |
+
name = "certifi"
|
| 92 |
+
version = "2026.7.22"
|
| 93 |
+
source = { registry = "https://pypi.org/simple" }
|
| 94 |
+
sdist = { url = "https://files.pythonhosted.org/packages/a3/c2/24167ea9858356b47a87a50d39908bfdb72ceeefe0041586e704e5376b3a/certifi-2026.7.22.tar.gz", hash = "sha256:741e2c3b351ddf169a738da9f2c048608ff7f2c5cc02f1ebc6b118bb090d5d55", size = 138112, upload-time = "2026-07-22T03:35:12.644Z" }
|
| 95 |
+
wheels = [
|
| 96 |
+
{ url = "https://files.pythonhosted.org/packages/0b/a7/71ac2cff56fec219ed242bb11b8efb69fcc4bec75db06fb7bfe35de520e6/certifi-2026.7.22-py3-none-any.whl", hash = "sha256:62f22742b58a1a33014a2b6b706588a8d7e2a88ae7bd1a6ebe8c992928483775", size = 136983, upload-time = "2026-07-22T03:35:11.276Z" },
|
| 97 |
+
]
|
| 98 |
+
|
| 99 |
+
[[package]]
|
| 100 |
+
name = "charset-normalizer"
|
| 101 |
+
version = "3.5.1"
|
| 102 |
+
source = { registry = "https://pypi.org/simple" }
|
| 103 |
+
sdist = { url = "https://files.pythonhosted.org/packages/e5/3f/143b048436775b0f76ac3eec145c019e8173ccc2885c8f20319b996d5e83/charset_normalizer-3.5.1.tar.gz", hash = "sha256:6117b84ea48435e5356dc737f5121485c30920ba43375fa7b434fd753df0eac3", size = 171764, upload-time = "2026-08-15T08:20:44.807Z" }
|
| 104 |
+
wheels = [
|
| 105 |
+
{ url = "https://files.pythonhosted.org/packages/30/27/78873dc8b6a56357517b74b6bb9568b80450e7bb4f6ef7e3fa9d22aa0bd7/charset_normalizer-3.5.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:5b6d1386bf0096d26d3a863dc0a487a5b4eb9aa93cf5ba69683d29dde6b9d60f", size = 344456, upload-time = "2026-08-15T08:17:10.072Z" },
|
| 106 |
+
{ url = "https://files.pythonhosted.org/packages/9a/4c/be49ada26b1f0232d57aa89bbebf997a5cc2332a5616b6eca26ff680044d/charset_normalizer-3.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4582c27e8c889d64811987b5967fbd3ae0c823fe1fd933b543d55ac20bb475fa", size = 238530, upload-time = "2026-08-15T08:17:11.563Z" },
|
| 107 |
+
{ url = "https://files.pythonhosted.org/packages/76/84/6f1290fa07ae6978d3960caa3eb1b8019bf9284ab7c2297b00c099ef4250/charset_normalizer-3.5.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:1d1c7a53a6c2103925cdd6d7229f8c567379f211c869793df679f2e9f738c369", size = 230200, upload-time = "2026-08-15T08:17:12.919Z" },
|
| 108 |
+
{ url = "https://files.pythonhosted.org/packages/e7/a0/47b18adeed31c8f16ba9700f32c1b18594cfa09f47eb672a488c273c22bf/charset_normalizer-3.5.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e6621fb2a4988d6e53eedc455e5903e2679f3967b8acb3d639f1b63c14a2e893", size = 262222, upload-time = "2026-08-15T08:17:14.571Z" },
|
| 109 |
+
{ url = "https://files.pythonhosted.org/packages/38/fe/341861ac118dae06f3ec0eb487488af52128f2ef2faf0b11003944d22259/charset_normalizer-3.5.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7c0c10730342b0c9b35dd1d619beb8214e520bd96a1f870f452680b238aab3e0", size = 258951, upload-time = "2026-08-15T08:17:16.158Z" },
|
| 110 |
+
{ url = "https://files.pythonhosted.org/packages/6f/89/bb5108dc6c3651dca963f2b0a3ba19bbcb370c94e1b6d3e0e844a58e6dca/charset_normalizer-3.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b9af956078716df40d985fb0dfeb2c2120c5ca92ba4ff4b388acfd01cdc14d08", size = 248801, upload-time = "2026-08-15T08:17:17.683Z" },
|
| 111 |
+
{ url = "https://files.pythonhosted.org/packages/b1/ba/ef83ae3aca816393decfa3530976f38a79812d707b80b580ac33b83f9877/charset_normalizer-3.5.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f9f8405c2c758532c74fed975dbee57be1f31a6e865c031870c79a6ed3212ada", size = 244070, upload-time = "2026-08-15T08:17:19.191Z" },
|
| 112 |
+
{ url = "https://files.pythonhosted.org/packages/f6/0b/c5292a2462d69b7378ea89793bbb5b2b6fcf6f7dd6d1667f9619094ad553/charset_normalizer-3.5.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:96fef3e886d6a9874b14f27fc193fbdc69d5d8035783d86aa4e1cea594e695f9", size = 240110, upload-time = "2026-08-15T08:17:20.547Z" },
|
| 113 |
+
{ url = "https://files.pythonhosted.org/packages/46/22/111e5be3b740d5c2a5bfcedb3d237b6591e5c2e82ae9d6ffcb121fe0909c/charset_normalizer-3.5.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5d8531a6569d025f68e2321e7638fb7978f23db58e5f69f56913837aae03816e", size = 232836, upload-time = "2026-08-15T08:17:21.895Z" },
|
| 114 |
+
{ url = "https://files.pythonhosted.org/packages/f9/d2/d2aad6fe0dbb44b194bf3becb60f5a0ac48446ade999a47fe7bb41eb09a7/charset_normalizer-3.5.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:aae2ee51122d3ae968a3837d97dc24a0aeebb0dea23694422cd172bd30017cd6", size = 262712, upload-time = "2026-08-15T08:17:23.727Z" },
|
| 115 |
+
{ url = "https://files.pythonhosted.org/packages/35/5a/337e4663a5eae6de99db940ee8066d4145caafb61327db62deda15313cce/charset_normalizer-3.5.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:7235dc28fc6dd9d832ac7c7bce95367dedb85929f17368a0c2bee1e080b9acbf", size = 242977, upload-time = "2026-08-15T08:17:25.157Z" },
|
| 116 |
+
{ url = "https://files.pythonhosted.org/packages/ca/85/f82f8a92e31c7519410e2e1afdc630f28ec47490ce2c09a11c1a43cbb459/charset_normalizer-3.5.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4abdc5f9ad448c1ecbfae2974b820535d6bc6e7eef63babbab3d81cf46968c71", size = 260207, upload-time = "2026-08-15T08:17:26.602Z" },
|
| 117 |
+
{ url = "https://files.pythonhosted.org/packages/b7/52/643d11ffd60e9ac2fd1fb87e167a19285b9eefeff4a40e63c87cbfbeab36/charset_normalizer-3.5.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ba501e667c17d8411f98e67a022d9604ef179aff0e459b7e292c796837c13573", size = 250562, upload-time = "2026-08-15T08:17:27.971Z" },
|
| 118 |
+
{ url = "https://files.pythonhosted.org/packages/62/16/46556278c2168d12df9da7fede5dc6fc70e60301b26a82bbeec238c9cfe3/charset_normalizer-3.5.1-cp312-cp312-win32.whl", hash = "sha256:cfa1c0cc3a8f9f53f1243a5a99ac36fd003880199383b37672e86ddda9cb07e2", size = 178507, upload-time = "2026-08-15T08:17:29.277Z" },
|
| 119 |
+
{ url = "https://files.pythonhosted.org/packages/9d/7a/4c6c298171e6b3e745633180ff59350fc0ca0db1ffd28df1e369e0579f71/charset_normalizer-3.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:3617ac3cfd8b9888f145ad89dd6e692285834b0201c6074a5eeaad3fd4d668c2", size = 200551, upload-time = "2026-08-15T08:17:30.668Z" },
|
| 120 |
+
{ url = "https://files.pythonhosted.org/packages/cd/d7/eb95a042f0dd22e304b0b6472b154f3546a1a039a9ee89ccb2a7f61591fc/charset_normalizer-3.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:88e85ab89cb822c1e635f51d6d32e488f94e002e70e2f492bdb8b945543f345a", size = 180700, upload-time = "2026-08-15T08:17:32.028Z" },
|
| 121 |
+
{ url = "https://files.pythonhosted.org/packages/5b/97/fb4e82231aba271ffd775a1b4993b0defc4e3059f286ae41d9433409fe85/charset_normalizer-3.5.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:41876ee62a3dddf48ff1121ad8f0798032aa03f2fd35f21f34a4cab14f18d8d2", size = 331467, upload-time = "2026-08-15T08:19:50.959Z" },
|
| 122 |
+
{ url = "https://files.pythonhosted.org/packages/9f/2f/fe3f187327aac18e2d54e9d2b08e15d27bf9b642d9e51c219f130fc34d1a/charset_normalizer-3.5.1-cp37-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a6dac12ff6b846103483683f60c5f8fee205121adc58ffd87e90a90a3af69e99", size = 253057, upload-time = "2026-08-15T08:19:52.654Z" },
|
| 123 |
+
{ url = "https://files.pythonhosted.org/packages/d7/c7/9e48cee5c161fe24da823b61bf381921d77cb994a0a4de148e95018c1984/charset_normalizer-3.5.1-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cee5dd7c6fb5dd52a0fe2a740f9bc6e3593f5f8b1788bde49de02086f30182b2", size = 240930, upload-time = "2026-08-15T08:19:54.163Z" },
|
| 124 |
+
{ url = "https://files.pythonhosted.org/packages/49/e0/716601f3cc69be7b198951150c75ead1ece33c3c8036ff6ffa46029659a0/charset_normalizer-3.5.1-cp37-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:343fb4f2821043bd87095f7b08a1a181febc8e36ac64212143bbfd0a0e1bc235", size = 230822, upload-time = "2026-08-15T08:19:55.807Z" },
|
| 125 |
+
{ url = "https://files.pythonhosted.org/packages/d3/05/71bfc5caa0abcc45aea1f6a4d50ac68e59605ddc7666fe8494f4cd229665/charset_normalizer-3.5.1-cp37-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ae4a097991662cd4fff0ddc74e0fe7874f82e00042fa0ea00855645ed0c79598", size = 260037, upload-time = "2026-08-15T08:19:57.312Z" },
|
| 126 |
+
{ url = "https://files.pythonhosted.org/packages/c3/92/de7e32ed05341e7a9c4c877c318418197b7f2d66a3b68d561bf2ac57ca3e/charset_normalizer-3.5.1-cp37-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4b599739b93b2cbeded49645ae3c8d1405c29ddfbceac1545c87a3f9580a9e96", size = 255097, upload-time = "2026-08-15T08:19:59.056Z" },
|
| 127 |
+
{ url = "https://files.pythonhosted.org/packages/f5/7b/ade0a122600319dfa0b1000ab0f9731c94a817904cf3c5de408c73a4ede7/charset_normalizer-3.5.1-cp37-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b39b69b347e5e47a3b5b8cfc005c68c1ba347474e3960236c4944a8ecd174962", size = 250166, upload-time = "2026-08-15T08:20:00.612Z" },
|
| 128 |
+
{ url = "https://files.pythonhosted.org/packages/75/9c/019fbb9f4834491a160951349b1a3714439376f66e5f7cf18b4f18f0c7aa/charset_normalizer-3.5.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:a2028475ba855475b8b4d3cfeb4994269c967aea8b9892dfba907f4263a863a3", size = 241821, upload-time = "2026-08-15T08:20:02.321Z" },
|
| 129 |
+
{ url = "https://files.pythonhosted.org/packages/2b/b8/11d4840bfc99330cc7fbcc2681ee5a044553a6e77655508d8f9b2bff7b34/charset_normalizer-3.5.1-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:36047af20e17097c3bb9476c2b7655f2f7aa51322c0ba58c07695bedf755a950", size = 232529, upload-time = "2026-08-15T08:20:04.008Z" },
|
| 130 |
+
{ url = "https://files.pythonhosted.org/packages/18/96/2b3a21492d9f65171ac75d872f5018260013d00bfa0ff70ec9f179148cbd/charset_normalizer-3.5.1-cp37-abi3-musllinux_1_2_ppc64le.whl", hash = "sha256:4c4fb141a727957c93edfe5c32a26ceb6b5f6461d67146e2d39f51e16170bea8", size = 260348, upload-time = "2026-08-15T08:20:05.877Z" },
|
| 131 |
+
{ url = "https://files.pythonhosted.org/packages/d6/aa/a69a2028e8bd052476c245460ab19d7de595de084dd968f2d75cd50c3e25/charset_normalizer-3.5.1-cp37-abi3-musllinux_1_2_riscv64.whl", hash = "sha256:2f293479cce755c75f1697e87c409b7ae4c555c7dfecb6e988ad13abba943031", size = 247234, upload-time = "2026-08-15T08:20:07.487Z" },
|
| 132 |
+
{ url = "https://files.pythonhosted.org/packages/35/8a/3d130aeabcaf3d2466af76b7b141c08d9e89c9016ab4b7cdd0f7dc2d1c62/charset_normalizer-3.5.1-cp37-abi3-musllinux_1_2_s390x.whl", hash = "sha256:3588e376b3ea2eea84976f67273d679f229e24c66dce7b82ae45aef04ff6e072", size = 256917, upload-time = "2026-08-15T08:20:09.142Z" },
|
| 133 |
+
{ url = "https://files.pythonhosted.org/packages/80/c2/a7379b840292d0c1ab9fbd17d1f3967aa81794dc95bc74be8999d7fedcf7/charset_normalizer-3.5.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:e199fb99720074809a7720f1c0b4d919eea8b87e88713e0f8f602f7bef543d9d", size = 254846, upload-time = "2026-08-15T08:20:10.727Z" },
|
| 134 |
+
{ url = "https://files.pythonhosted.org/packages/01/65/d43b714731bb2f40d4053dfa00ecfc1c5a301f8e3316c5db3a09af59fe94/charset_normalizer-3.5.1-cp37-abi3-win32.whl", hash = "sha256:dd732602a7009217f658d5863d12d79d373a4de0eebc111094bcdd3bb8e0a6cc", size = 174216, upload-time = "2026-08-15T08:20:12.334Z" },
|
| 135 |
+
{ url = "https://files.pythonhosted.org/packages/35/4f/b911ed898b26a09789eba9c9200c999aff6c61b4bafaf4838e56d1a1e1a3/charset_normalizer-3.5.1-cp37-abi3-win_amd64.whl", hash = "sha256:70055ff39b97c99e7ae40ea3e393fb62aa2e44dbd9b29f8d14f42fb0025c3959", size = 199764, upload-time = "2026-08-15T08:20:13.908Z" },
|
| 136 |
+
{ url = "https://files.pythonhosted.org/packages/f0/a7/920baf467bfd9bf689f3b318340f37aee4572a71f162bd8db51da55ba4fa/charset_normalizer-3.5.1-cp37-abi3-win_arm64.whl", hash = "sha256:87e4f41d375c0b9be2fb5251aee4b8a689169e134535aed81bf085c3b647451e", size = 287318, upload-time = "2026-08-15T08:20:15.551Z" },
|
| 137 |
+
{ url = "https://files.pythonhosted.org/packages/cc/61/d01fc49b8dea277640b55a9e15960dbca9fdc8c9fde18e572d39c59f4019/charset_normalizer-3.5.1-py3-none-any.whl", hash = "sha256:6df0ec430f9a831772c23ca5a224cba36517a58a84bb32c32bb59a9fa67c47f6", size = 68658, upload-time = "2026-08-15T08:20:43.306Z" },
|
| 138 |
+
]
|
| 139 |
+
|
| 140 |
+
[[package]]
|
| 141 |
+
name = "click"
|
| 142 |
+
version = "8.5.0"
|
| 143 |
+
source = { registry = "https://pypi.org/simple" }
|
| 144 |
+
sdist = { url = "https://files.pythonhosted.org/packages/c7/0e/7fa0ef50764b67090eca4114772a2abf8b6148198475e54c660b97caeee6/click-8.5.0.tar.gz", hash = "sha256:ba0d2089de75ea0310e2dde03160e6ca10009947fb95a182f9b54021bb272e34", size = 382235, upload-time = "2026-08-26T13:33:14.56Z" }
|
| 145 |
+
wheels = [
|
| 146 |
+
{ url = "https://files.pythonhosted.org/packages/58/50/6c0d534c5f134586a8e1ba4e330569e32f057e33372ae556463212fb4cd3/click-8.5.0-py3-none-any.whl", hash = "sha256:255bc9599cf7748b4b1a446ccc735421bd08a2ae529a8b88597d3de5664ee360", size = 125251, upload-time = "2026-08-26T13:33:12.928Z" },
|
| 147 |
+
]
|
| 148 |
+
|
| 149 |
+
[[package]]
|
| 150 |
+
name = "colorama"
|
| 151 |
+
version = "0.4.6"
|
| 152 |
+
source = { registry = "https://pypi.org/simple" }
|
| 153 |
+
sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" }
|
| 154 |
+
wheels = [
|
| 155 |
+
{ url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" },
|
| 156 |
+
]
|
| 157 |
+
|
| 158 |
+
[[package]]
|
| 159 |
+
name = "cropmath-public-candidate"
|
| 160 |
+
version = "0.0.0"
|
| 161 |
+
source = { virtual = "." }
|
| 162 |
+
dependencies = [
|
| 163 |
+
{ name = "datasets" },
|
| 164 |
+
]
|
| 165 |
+
|
| 166 |
+
[package.dev-dependencies]
|
| 167 |
+
dev = [
|
| 168 |
+
{ name = "pytest" },
|
| 169 |
+
]
|
| 170 |
+
|
| 171 |
+
[package.metadata]
|
| 172 |
+
requires-dist = [{ name = "datasets", specifier = "==5.0.1" }]
|
| 173 |
+
|
| 174 |
+
[package.metadata.requires-dev]
|
| 175 |
+
dev = [{ name = "pytest", specifier = "==9.1.1" }]
|
| 176 |
+
|
| 177 |
+
[[package]]
|
| 178 |
+
name = "datasets"
|
| 179 |
+
version = "5.0.1"
|
| 180 |
+
source = { registry = "https://pypi.org/simple" }
|
| 181 |
+
dependencies = [
|
| 182 |
+
{ name = "dill" },
|
| 183 |
+
{ name = "filelock" },
|
| 184 |
+
{ name = "fsspec", extra = ["http"] },
|
| 185 |
+
{ name = "httpx" },
|
| 186 |
+
{ name = "huggingface-hub" },
|
| 187 |
+
{ name = "multiprocess" },
|
| 188 |
+
{ name = "numpy" },
|
| 189 |
+
{ name = "packaging" },
|
| 190 |
+
{ name = "pandas" },
|
| 191 |
+
{ name = "pyarrow" },
|
| 192 |
+
{ name = "pyyaml" },
|
| 193 |
+
{ name = "requests" },
|
| 194 |
+
{ name = "tqdm" },
|
| 195 |
+
{ name = "xxhash" },
|
| 196 |
+
]
|
| 197 |
+
sdist = { url = "https://files.pythonhosted.org/packages/0a/5b/836516269d4f618efe621661cfb6f9acc57e6f95265db3efaee48a5ffe04/datasets-5.0.1.tar.gz", hash = "sha256:ce22bb851efd7494f08aad33b940803784434f6e77763d00679a0dc45fcf686a", size = 641498, upload-time = "2026-07-28T11:09:12.016Z" }
|
| 198 |
+
wheels = [
|
| 199 |
+
{ url = "https://files.pythonhosted.org/packages/44/0b/98fc6eb83333508ca5f44c52b3e287ea8137a0ad582714e2cbc67a02154b/datasets-5.0.1-py3-none-any.whl", hash = "sha256:9fbf73688f8c18f7529b4fe592abd04015f81d1e58001e4bac73ffb2b39d7cc4", size = 559079, upload-time = "2026-07-28T11:09:10.266Z" },
|
| 200 |
+
]
|
| 201 |
+
|
| 202 |
+
[[package]]
|
| 203 |
+
name = "dill"
|
| 204 |
+
version = "0.4.1"
|
| 205 |
+
source = { registry = "https://pypi.org/simple" }
|
| 206 |
+
sdist = { url = "https://files.pythonhosted.org/packages/81/e1/56027a71e31b02ddc53c7d65b01e68edf64dea2932122fe7746a516f75d5/dill-0.4.1.tar.gz", hash = "sha256:423092df4182177d4d8ba8290c8a5b640c66ab35ec7da59ccfa00f6fa3eea5fa", size = 187315, upload-time = "2026-01-19T02:36:56.85Z" }
|
| 207 |
+
wheels = [
|
| 208 |
+
{ url = "https://files.pythonhosted.org/packages/1e/77/dc8c558f7593132cf8fefec57c4f60c83b16941c574ac5f619abb3ae7933/dill-0.4.1-py3-none-any.whl", hash = "sha256:1e1ce33e978ae97fcfcff5638477032b801c46c7c65cf717f95fbc2248f79a9d", size = 120019, upload-time = "2026-01-19T02:36:55.663Z" },
|
| 209 |
+
]
|
| 210 |
+
|
| 211 |
+
[[package]]
|
| 212 |
+
name = "filelock"
|
| 213 |
+
version = "3.32.5"
|
| 214 |
+
source = { registry = "https://pypi.org/simple" }
|
| 215 |
+
sdist = { url = "https://files.pythonhosted.org/packages/0a/a0/50c2c0ce5e74d7721bbb1b19a26ebd339aac5878553a6e35308c2f31f935/filelock-3.32.5.tar.gz", hash = "sha256:f6a6a28f743f9b95ce19db5abe0f376f75eb56517dff21e1a4751e2657d3e83d", size = 222838, upload-time = "2026-08-31T18:56:34.729Z" }
|
| 216 |
+
wheels = [
|
| 217 |
+
{ url = "https://files.pythonhosted.org/packages/36/d2/b70a31e13d04456d28493f31d2aa087e99eeb2767ef0293b2625727ccb8c/filelock-3.32.5-py3-none-any.whl", hash = "sha256:142cd9fa77a872c5e78c62329a0d15278fadc686eb89e760017968961a4fd6b2", size = 100003, upload-time = "2026-08-31T18:56:33.078Z" },
|
| 218 |
+
]
|
| 219 |
+
|
| 220 |
+
[[package]]
|
| 221 |
+
name = "frozenlist"
|
| 222 |
+
version = "1.8.0"
|
| 223 |
+
source = { registry = "https://pypi.org/simple" }
|
| 224 |
+
sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" }
|
| 225 |
+
wheels = [
|
| 226 |
+
{ url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" },
|
| 227 |
+
{ url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" },
|
| 228 |
+
{ url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" },
|
| 229 |
+
{ url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" },
|
| 230 |
+
{ url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" },
|
| 231 |
+
{ url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" },
|
| 232 |
+
{ url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" },
|
| 233 |
+
{ url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" },
|
| 234 |
+
{ url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" },
|
| 235 |
+
{ url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" },
|
| 236 |
+
{ url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" },
|
| 237 |
+
{ url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" },
|
| 238 |
+
{ url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" },
|
| 239 |
+
{ url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" },
|
| 240 |
+
{ url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" },
|
| 241 |
+
{ url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" },
|
| 242 |
+
{ url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" },
|
| 243 |
+
]
|
| 244 |
+
|
| 245 |
+
[[package]]
|
| 246 |
+
name = "fsspec"
|
| 247 |
+
version = "2026.6.0"
|
| 248 |
+
source = { registry = "https://pypi.org/simple" }
|
| 249 |
+
sdist = { url = "https://files.pythonhosted.org/packages/10/a1/ae4e3e5003468d6391d2c77b6fa1cd73bd5d13511d81c642d7b28ac90ed4/fsspec-2026.6.0.tar.gz", hash = "sha256:f5bac145310fe30e16e1471bd6840b2d990d609e872251d7e674241822abf01a", size = 313646, upload-time = "2026-06-16T01:57:28.105Z" }
|
| 250 |
+
wheels = [
|
| 251 |
+
{ url = "https://files.pythonhosted.org/packages/e5/22/4222d7ddf3da30f363edaa98e329c2bce6c65497c9cb2810931c8b2c0fbc/fsspec-2026.6.0-py3-none-any.whl", hash = "sha256:02e0b71817df9b2169dc30a16832045764def1191b43dcff5bb85bdee212d2a1", size = 203949, upload-time = "2026-06-16T01:57:26.358Z" },
|
| 252 |
+
]
|
| 253 |
+
|
| 254 |
+
[package.optional-dependencies]
|
| 255 |
+
http = [
|
| 256 |
+
{ name = "aiohttp" },
|
| 257 |
+
]
|
| 258 |
+
|
| 259 |
+
[[package]]
|
| 260 |
+
name = "h11"
|
| 261 |
+
version = "0.16.0"
|
| 262 |
+
source = { registry = "https://pypi.org/simple" }
|
| 263 |
+
sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" }
|
| 264 |
+
wheels = [
|
| 265 |
+
{ url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" },
|
| 266 |
+
]
|
| 267 |
+
|
| 268 |
+
[[package]]
|
| 269 |
+
name = "hf-xet"
|
| 270 |
+
version = "1.6.0"
|
| 271 |
+
source = { registry = "https://pypi.org/simple" }
|
| 272 |
+
sdist = { url = "https://files.pythonhosted.org/packages/1b/ab/522a2ab67f27971a9d48ca666d4fca85ef7d5282d142e31fd087e27b1bbe/hf_xet-1.6.0.tar.gz", hash = "sha256:2e58454a340b3556dfa4972d5451aff4fba8dd42a236600ba1a1d2b1514f0fef", size = 920527, upload-time = "2026-08-03T22:33:13.243Z" }
|
| 273 |
+
wheels = [
|
| 274 |
+
{ url = "https://files.pythonhosted.org/packages/a2/50/7afa2c9c787405864fc47a0d1bbc02c62e9101947ed43c1f43899fc7d91d/hf_xet-1.6.0-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:633dc0cd71d32da58ab8c03ad38e2fac452c15c2b0a2866ebf6ededfe0a5061d", size = 4071729, upload-time = "2026-08-03T22:33:00.721Z" },
|
| 275 |
+
{ url = "https://files.pythonhosted.org/packages/4b/69/55b8dcf636142ae660fec1869fcac14c4da2e8412e14d6eee1523be77e9f/hf_xet-1.6.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:f0906082d9932ae0c0057fa194041c22b4e2cdb46b2592ef3b91f020d62a081a", size = 3876287, upload-time = "2026-08-03T22:33:02.251Z" },
|
| 276 |
+
{ url = "https://files.pythonhosted.org/packages/67/4e/a28359bf1c1ecf11eba22123168c138698f7cb576ac678f5a2e16cd5da08/hf_xet-1.6.0-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d62671bb130879cef0ee4c9ebe47a14af6c66ec53e6d84dc15936e5ffdfac82f", size = 4464663, upload-time = "2026-08-03T22:33:03.802Z" },
|
| 277 |
+
{ url = "https://files.pythonhosted.org/packages/9a/69/1f0cbc2fb22ae6082d094f743d1b8945a3f36f6089cb95f42b7ee348cda7/hf_xet-1.6.0-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:0e6e21fa3cdfcdcd76748564bf593870a5e013f47d97cf10aed63aa222cff5b7", size = 4262538, upload-time = "2026-08-03T22:33:05.287Z" },
|
| 278 |
+
{ url = "https://files.pythonhosted.org/packages/d1/3a/4f4f2301ade26e404462d3336fa11f7958d914cabbabdd6e03c3c5d5658c/hf_xet-1.6.0-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:4fc74352a17015bd0ee90038bc9efe38db894cde45f268b6712b04fce8cd0acb", size = 4460520, upload-time = "2026-08-03T22:33:06.81Z" },
|
| 279 |
+
{ url = "https://files.pythonhosted.org/packages/ab/5f/311725e2a905534dfee2dcb5b08414f249147f1f12252bfc2bd24caa075c/hf_xet-1.6.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:8fb4f71cba6129110c3374a33f919001ff130488fc23553698e34cc1c2a1198c", size = 4675937, upload-time = "2026-08-03T22:33:08.616Z" },
|
| 280 |
+
{ url = "https://files.pythonhosted.org/packages/98/b7/8c59a66d15205024662f1d66968136f13893f96df1ddc5087e2e281fc95f/hf_xet-1.6.0-cp38-abi3-win_amd64.whl", hash = "sha256:fb4fadde1b2b70bf4c0c14a6dccbe7194b1c28947fefd5bbe3fed9d940676c3b", size = 4033128, upload-time = "2026-08-03T22:33:10.171Z" },
|
| 281 |
+
{ url = "https://files.pythonhosted.org/packages/73/63/ca511b6f802f28cf3489b280fe77475bcca8de85e81a6299d7916b5b5555/hf_xet-1.6.0-cp38-abi3-win_arm64.whl", hash = "sha256:3dc3e35441ba395006af5aaacc40ef2e603c51ef46c3530b9156185f00935ea3", size = 3859359, upload-time = "2026-08-03T22:33:11.725Z" },
|
| 282 |
+
]
|
| 283 |
+
|
| 284 |
+
[[package]]
|
| 285 |
+
name = "httpcore"
|
| 286 |
+
version = "1.0.9"
|
| 287 |
+
source = { registry = "https://pypi.org/simple" }
|
| 288 |
+
dependencies = [
|
| 289 |
+
{ name = "certifi" },
|
| 290 |
+
{ name = "h11" },
|
| 291 |
+
]
|
| 292 |
+
sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" }
|
| 293 |
+
wheels = [
|
| 294 |
+
{ url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" },
|
| 295 |
+
]
|
| 296 |
+
|
| 297 |
+
[[package]]
|
| 298 |
+
name = "httpx"
|
| 299 |
+
version = "0.28.1"
|
| 300 |
+
source = { registry = "https://pypi.org/simple" }
|
| 301 |
+
dependencies = [
|
| 302 |
+
{ name = "anyio" },
|
| 303 |
+
{ name = "certifi" },
|
| 304 |
+
{ name = "httpcore" },
|
| 305 |
+
{ name = "idna" },
|
| 306 |
+
]
|
| 307 |
+
sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" }
|
| 308 |
+
wheels = [
|
| 309 |
+
{ url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" },
|
| 310 |
+
]
|
| 311 |
+
|
| 312 |
+
[[package]]
|
| 313 |
+
name = "huggingface-hub"
|
| 314 |
+
version = "1.30.0"
|
| 315 |
+
source = { registry = "https://pypi.org/simple" }
|
| 316 |
+
dependencies = [
|
| 317 |
+
{ name = "click" },
|
| 318 |
+
{ name = "filelock" },
|
| 319 |
+
{ name = "fsspec" },
|
| 320 |
+
{ name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" },
|
| 321 |
+
{ name = "httpx" },
|
| 322 |
+
{ name = "packaging" },
|
| 323 |
+
{ name = "pyyaml" },
|
| 324 |
+
{ name = "tqdm" },
|
| 325 |
+
{ name = "typing-extensions" },
|
| 326 |
+
]
|
| 327 |
+
sdist = { url = "https://files.pythonhosted.org/packages/35/97/2eb4abaa5b969ed385066a0496a3823b3ff467fc1082e2202955f1867d60/huggingface_hub-1.30.0.tar.gz", hash = "sha256:e6a6120bc8c8e2723d03648434ee247088cceb55ba7067e7d34d692cad5fdb57", size = 964291, upload-time = "2026-09-03T10:05:14.053Z" }
|
| 328 |
+
wheels = [
|
| 329 |
+
{ url = "https://files.pythonhosted.org/packages/c3/0e/3e45bbe0dd48f4e56b1d46649d342de853cd1c7e815323472ab62687f153/huggingface_hub-1.30.0-py3-none-any.whl", hash = "sha256:96ae0a8e99a234374a6fe43e989ebd21c04640b91ab2927e7e5773ba1131ca59", size = 796795, upload-time = "2026-09-03T10:05:12.21Z" },
|
| 330 |
+
]
|
| 331 |
+
|
| 332 |
+
[[package]]
|
| 333 |
+
name = "idna"
|
| 334 |
+
version = "3.19"
|
| 335 |
+
source = { registry = "https://pypi.org/simple" }
|
| 336 |
+
sdist = { url = "https://files.pythonhosted.org/packages/5f/f7/abb373e5757eaec4b922b92f97ec8d6d7e057cf06778247604fbc4e7c3f3/idna-3.19.tar.gz", hash = "sha256:5e0811a4383b21dc5838069f801c4fb62113b7447663d2530d2bd6e77b49bf15", size = 215237, upload-time = "2026-08-18T05:14:24.27Z" }
|
| 337 |
+
wheels = [
|
| 338 |
+
{ url = "https://files.pythonhosted.org/packages/57/b0/0e52c878c53f245edd3a11020f20979b3f490f245af532c7cae3027754b5/idna-3.19-py3-none-any.whl", hash = "sha256:815e7be7a7806d54abb586dc943addc79e8b2ee16915059658cbeff4b1b43bf4", size = 68550, upload-time = "2026-08-18T05:14:22.343Z" },
|
| 339 |
+
]
|
| 340 |
+
|
| 341 |
+
[[package]]
|
| 342 |
+
name = "iniconfig"
|
| 343 |
+
version = "2.3.0"
|
| 344 |
+
source = { registry = "https://pypi.org/simple" }
|
| 345 |
+
sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" }
|
| 346 |
+
wheels = [
|
| 347 |
+
{ url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" },
|
| 348 |
+
]
|
| 349 |
+
|
| 350 |
+
[[package]]
|
| 351 |
+
name = "multidict"
|
| 352 |
+
version = "6.7.1"
|
| 353 |
+
source = { registry = "https://pypi.org/simple" }
|
| 354 |
+
sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" }
|
| 355 |
+
wheels = [
|
| 356 |
+
{ url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" },
|
| 357 |
+
{ url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" },
|
| 358 |
+
{ url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" },
|
| 359 |
+
{ url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" },
|
| 360 |
+
{ url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" },
|
| 361 |
+
{ url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" },
|
| 362 |
+
{ url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" },
|
| 363 |
+
{ url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" },
|
| 364 |
+
{ url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" },
|
| 365 |
+
{ url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" },
|
| 366 |
+
{ url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" },
|
| 367 |
+
{ url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" },
|
| 368 |
+
{ url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" },
|
| 369 |
+
{ url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" },
|
| 370 |
+
{ url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" },
|
| 371 |
+
{ url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" },
|
| 372 |
+
{ url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" },
|
| 373 |
+
{ url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" },
|
| 374 |
+
{ url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" },
|
| 375 |
+
]
|
| 376 |
+
|
| 377 |
+
[[package]]
|
| 378 |
+
name = "multiprocess"
|
| 379 |
+
version = "0.70.19"
|
| 380 |
+
source = { registry = "https://pypi.org/simple" }
|
| 381 |
+
dependencies = [
|
| 382 |
+
{ name = "dill" },
|
| 383 |
+
]
|
| 384 |
+
sdist = { url = "https://files.pythonhosted.org/packages/a2/f2/e783ac7f2aeeed14e9e12801f22529cc7e6b7ab80928d6dcce4e9f00922d/multiprocess-0.70.19.tar.gz", hash = "sha256:952021e0e6c55a4a9fe4cd787895b86e239a40e76802a789d6305398d3975897", size = 2079989, upload-time = "2026-01-19T06:47:39.744Z" }
|
| 385 |
+
wheels = [
|
| 386 |
+
{ url = "https://files.pythonhosted.org/packages/e3/45/8004d1e6b9185c1a444d6b55ac5682acf9d98035e54386d967366035a03a/multiprocess-0.70.19-py310-none-any.whl", hash = "sha256:97404393419dcb2a8385910864eedf47a3cadf82c66345b44f036420eb0b5d87", size = 134948, upload-time = "2026-01-19T06:47:32.325Z" },
|
| 387 |
+
{ url = "https://files.pythonhosted.org/packages/86/c2/dec9722dc3474c164a0b6bcd9a7ed7da542c98af8cabce05374abab35edd/multiprocess-0.70.19-py311-none-any.whl", hash = "sha256:928851ae7973aea4ce0eaf330bbdafb2e01398a91518d5c8818802845564f45c", size = 144457, upload-time = "2026-01-19T06:47:33.711Z" },
|
| 388 |
+
{ url = "https://files.pythonhosted.org/packages/71/70/38998b950a97ea279e6bd657575d22d1a2047256caf707d9a10fbce4f065/multiprocess-0.70.19-py312-none-any.whl", hash = "sha256:3a56c0e85dd5025161bac5ce138dcac1e49174c7d8e74596537e729fd5c53c28", size = 150281, upload-time = "2026-01-19T06:47:35.037Z" },
|
| 389 |
+
{ url = "https://files.pythonhosted.org/packages/7e/82/69e539c4c2027f1e1697e09aaa2449243085a0edf81ae2c6341e84d769b6/multiprocess-0.70.19-py39-none-any.whl", hash = "sha256:0d4b4397ed669d371c81dcd1ef33fd384a44d6c3de1bd0ca7ac06d837720d3c5", size = 133477, upload-time = "2026-01-19T06:47:38.619Z" },
|
| 390 |
+
]
|
| 391 |
+
|
| 392 |
+
[[package]]
|
| 393 |
+
name = "numpy"
|
| 394 |
+
version = "2.5.2"
|
| 395 |
+
source = { registry = "https://pypi.org/simple" }
|
| 396 |
+
sdist = { url = "https://files.pythonhosted.org/packages/9a/80/db0b4559e57ec36362bedbb05530a87fafbcb6067708c946967a41d449e7/numpy-2.5.2.tar.gz", hash = "sha256:d482d171c406ae88c5b19cad3b6a1c4c5209f886ab74bc44c2c865c23f52d860", size = 20773161, upload-time = "2026-08-09T13:48:27.962Z" }
|
| 397 |
+
wheels = [
|
| 398 |
+
{ url = "https://files.pythonhosted.org/packages/69/72/dccb0aaf40972777283303919f613964227266d0c13adebb79ac124f1c3e/numpy-2.5.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:14e373cfc6387177e8409dac3c7159be8eb05cd77096cd7c950268b86f62831c", size = 16891693, upload-time = "2026-08-09T13:44:51.702Z" },
|
| 399 |
+
{ url = "https://files.pythonhosted.org/packages/60/2e/b5aee50a1f74ac815cf8331812cb8251e29024025de462e0c047641c614c/numpy-2.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4bbd96c833ecc8cc069ce518078fc8c60cb9cbfb0fea5b7a803ad65035596d03", size = 11903109, upload-time = "2026-08-09T13:44:55.501Z" },
|
| 400 |
+
{ url = "https://files.pythonhosted.org/packages/f3/f4/29e78102a80601cf034d4e9767022cffeca2c3b4c926e1754572ca95593d/numpy-2.5.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:6e8172ddfcf5cf74b811d372b570b83c60bd2de87a6fbfbebdadb4a9bd9c6cbb", size = 5350202, upload-time = "2026-08-09T13:44:58.401Z" },
|
| 401 |
+
{ url = "https://files.pythonhosted.org/packages/11/4b/dcd3b7eadaf4035d2c7a4289d232523a6964f602598ef7674e4bd7291f93/numpy-2.5.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:65f188481f1669e26f62b701e8205d19e460fa4a9b52a1414ba382330e4a3414", size = 6687736, upload-time = "2026-08-09T13:45:00.813Z" },
|
| 402 |
+
{ url = "https://files.pythonhosted.org/packages/e5/21/4947e0e9d6c9fc2e2ff15b8949049ee44f63adb9cacc729ab8793f97e712/numpy-2.5.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8ee9c4eeb8454b3660a8b53493563c3e121c2fc94fbd72b848ef814ed7b676a9", size = 15612696, upload-time = "2026-08-09T13:45:04.151Z" },
|
| 403 |
+
{ url = "https://files.pythonhosted.org/packages/3a/5f/62d28cf019460c7f1394105b4d49d9911a9c444cb77ab0bd95a204c5a6de/numpy-2.5.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3cdec01fa790a186d430433fdd4d4ffb70eed6f0eeb4bf05c8dbe2dce0a9bcb8", size = 16722264, upload-time = "2026-08-09T13:45:07.714Z" },
|
| 404 |
+
{ url = "https://files.pythonhosted.org/packages/14/25/3f0be4c1b9fdf5dd5e708a6806978564d7c46a055c000496309ff2a2f8af/numpy-2.5.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7999d4ddb0c4025018373fd787510d46e04c769467af22869707b3c1cfd459ab", size = 16974396, upload-time = "2026-08-09T13:45:11.316Z" },
|
| 405 |
+
{ url = "https://files.pythonhosted.org/packages/22/72/6262cbdeeb45da9d971e40715f579d791603ba8ec0b5e2db1ac55454421d/numpy-2.5.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c1f017dc0875c9209d219f97feceb7d54c2661bb243deb4114478e1295808af7", size = 18476044, upload-time = "2026-08-09T13:45:14.869Z" },
|
| 406 |
+
{ url = "https://files.pythonhosted.org/packages/36/33/29208b8b075bde62d26a81d14b358c42b0f69b6cabd98d4ff97f37f22b05/numpy-2.5.2-cp312-cp312-win32.whl", hash = "sha256:d6a48072864e3324e194a8fbb3c657bcc5b5c869dbc64c9537b1d5c862572c0a", size = 6072817, upload-time = "2026-08-09T13:45:17.867Z" },
|
| 407 |
+
{ url = "https://files.pythonhosted.org/packages/7f/b9/87fea2769fe1c47c1b5b01d8310772c9d1a85d485de7cf386ef7a3332b02/numpy-2.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:28ac63476ec7651484215ee7fa15a1f78b57c14621f01e392afe17b9a1390ce4", size = 12464674, upload-time = "2026-08-09T13:45:20.734Z" },
|
| 408 |
+
{ url = "https://files.pythonhosted.org/packages/14/52/032b97e00461ab0809bbe4c588b035620e5a14b8cdee47ecddefc7b17d33/numpy-2.5.2-cp312-cp312-win_arm64.whl", hash = "sha256:27650bb0e7140fa3d37b9923b4803645e0b125d190f326eecfd3f4dad8e8ade1", size = 10397131, upload-time = "2026-08-09T13:45:23.73Z" },
|
| 409 |
+
]
|
| 410 |
+
|
| 411 |
+
[[package]]
|
| 412 |
+
name = "packaging"
|
| 413 |
+
version = "26.3"
|
| 414 |
+
source = { registry = "https://pypi.org/simple" }
|
| 415 |
+
sdist = { url = "https://files.pythonhosted.org/packages/7d/fa/3944b40b07da9ce895c0e6303a5ab7d53da063554f534556b134a54d6093/packaging-26.3.tar.gz", hash = "sha256:94edc256424af38762eb31306eed28beb9f0efc50a8837492c9d6fd6004aed79", size = 313412, upload-time = "2026-08-04T18:15:28.737Z" }
|
| 416 |
+
wheels = [
|
| 417 |
+
{ url = "https://files.pythonhosted.org/packages/63/34/ba1c580383c9eada3711951fef0795c80b829a078d72188184bcab9dd527/packaging-26.3-py3-none-any.whl", hash = "sha256:d7193f7c8e4e93f444fde0262bf90af30e16fa0ad0ad44cb553c87339b23cd1c", size = 129956, upload-time = "2026-08-04T18:15:27.159Z" },
|
| 418 |
+
]
|
| 419 |
+
|
| 420 |
+
[[package]]
|
| 421 |
+
name = "pandas"
|
| 422 |
+
version = "3.0.5"
|
| 423 |
+
source = { registry = "https://pypi.org/simple" }
|
| 424 |
+
dependencies = [
|
| 425 |
+
{ name = "numpy" },
|
| 426 |
+
{ name = "python-dateutil" },
|
| 427 |
+
{ name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" },
|
| 428 |
+
]
|
| 429 |
+
sdist = { url = "https://files.pythonhosted.org/packages/be/4f/5f3422a2afec5ffc46308b79e53291365a93748b498ac2e58bead0197916/pandas-3.0.5.tar.gz", hash = "sha256:dca3734d6ab7c906e6730f0788b0a1dbb9f2467731f9711f77995c8e9d62d712", size = 4658219, upload-time = "2026-07-22T22:19:28.819Z" }
|
| 430 |
+
wheels = [
|
| 431 |
+
{ url = "https://files.pythonhosted.org/packages/1c/54/1dc810ea558d1320b597aa140a514f2fdf1d2ea09c38cf556f13ea712ec9/pandas-3.0.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fa290c16964d4963fbfbc358928239cf3bd755b20e988ce944877def2f44471d", size = 10411717, upload-time = "2026-07-22T22:18:08.307Z" },
|
| 432 |
+
{ url = "https://files.pythonhosted.org/packages/68/56/fbe81c09195924d8b7b8d4461a20458fe80a6a5ed6b24f0314da684277e1/pandas-3.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c2e26bb46934b8a2ca0c3de1d3d606fc5f6746584791b2db264d58cf370e08dc", size = 9957095, upload-time = "2026-07-22T22:18:10.6Z" },
|
| 433 |
+
{ url = "https://files.pythonhosted.org/packages/e0/51/fac252f4a913ed5eabf3c11b880a9e8d5a6c10f0b2129d0462212d238b4d/pandas-3.0.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:73fa87b08a7ef706f8aafda39ddaccf2a99047bea62d8c88a0361bcafb2237bc", size = 10485458, upload-time = "2026-07-22T22:18:12.834Z" },
|
| 434 |
+
{ url = "https://files.pythonhosted.org/packages/12/98/e976540c1addf70442be7842a18cf70884a964abbf69442504f4d2939989/pandas-3.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d373ce03ffd84010ed9839fa73672a9c8256990532e158440c0085db7d914b34", size = 10998091, upload-time = "2026-07-22T22:18:15.209Z" },
|
| 435 |
+
{ url = "https://files.pythonhosted.org/packages/a4/8c/1f29b5be8d3fc47dd7567eb167fabba2085879b31e0287ce7cba6d3d2ff4/pandas-3.0.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2a29c53d85ea98c5e792c59ef82ee9fbe6ca902c0d0adb6b23f45ef894cd7bf6", size = 11499501, upload-time = "2026-07-22T22:18:17.689Z" },
|
| 436 |
+
{ url = "https://files.pythonhosted.org/packages/9d/e2/bd9c98ad2df7b38bde002adde4cdf353519da51881634323b126c55997f9/pandas-3.0.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a5ad3b02ed6bc7d7ae9b70804b2c6aa31827489d150f8e623ce82491b82085d7", size = 12060559, upload-time = "2026-07-22T22:18:20.147Z" },
|
| 437 |
+
{ url = "https://files.pythonhosted.org/packages/f3/9a/ffbd852d58bd74a617fe2f8ee6a58a96982271ce41cf981eab22190b4a4b/pandas-3.0.5-cp312-cp312-pyemscripten_2024_0_wasm32.whl", hash = "sha256:b2acb4650527eec6822c3dadb2b771277b65e7dae7a267d4bccf65fd1bb3fbce", size = 7197652, upload-time = "2026-07-22T22:18:22.502Z" },
|
| 438 |
+
{ url = "https://files.pythonhosted.org/packages/70/b5/d2d3e9ae73362ba4229651b0ee1455cf78073a1ce585f6ff693782ce263e/pandas-3.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:80a611068e8a3ac23f7398c6c14eb46dc974e5cc9997f653e2dcfd1da74edd41", size = 9831691, upload-time = "2026-07-22T22:18:24.534Z" },
|
| 439 |
+
{ url = "https://files.pythonhosted.org/packages/52/51/dea1e89d6a6796b9c43f85a09b484ee03edb8a4c4842e73e200a8c11301c/pandas-3.0.5-cp312-cp312-win_arm64.whl", hash = "sha256:25ff585b972a18ef1fe9ffa3ac6544d9950508aa76832e5147640b6022821e49", size = 9105796, upload-time = "2026-07-22T22:18:27.064Z" },
|
| 440 |
+
]
|
| 441 |
+
|
| 442 |
+
[[package]]
|
| 443 |
+
name = "pluggy"
|
| 444 |
+
version = "1.6.0"
|
| 445 |
+
source = { registry = "https://pypi.org/simple" }
|
| 446 |
+
sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" }
|
| 447 |
+
wheels = [
|
| 448 |
+
{ url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" },
|
| 449 |
+
]
|
| 450 |
+
|
| 451 |
+
[[package]]
|
| 452 |
+
name = "propcache"
|
| 453 |
+
version = "0.5.2"
|
| 454 |
+
source = { registry = "https://pypi.org/simple" }
|
| 455 |
+
sdist = { url = "https://files.pythonhosted.org/packages/ec/44/c87281c333769159c50594f22610f77398a47ccbfbbf23074e744e86f87c/propcache-0.5.2.tar.gz", hash = "sha256:01c4fc7480cd0598bb4b57022df55b9ca296da7fc5a8760bd8451a7e63a7d427", size = 50208, upload-time = "2026-05-08T21:02:12.199Z" }
|
| 456 |
+
wheels = [
|
| 457 |
+
{ url = "https://files.pythonhosted.org/packages/4a/cb/e27bc2b2737a0bb49962b275efa051e8f1c35a936df7d5139b6b658b7dc9/propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:806719138ecd720339a12410fb9614ac9b2b2d3a5fdf8235d56981c36f4039ba", size = 95887, upload-time = "2026-05-08T21:00:11.277Z" },
|
| 458 |
+
{ url = "https://files.pythonhosted.org/packages/e6/13/b8ae04c59392f8d11c6cd9fb4011d1dc7c86b81225c770280300e259ffe1/propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:db2b80ea58eab4f86b2beec3cc8b39e8ff9276ac20e96b7cce43c8ae84cd6b5a", size = 54654, upload-time = "2026-05-08T21:00:12.604Z" },
|
| 459 |
+
{ url = "https://files.pythonhosted.org/packages/2c/7d/49777a3e20b55863d4794384a38acd460c04157b0a00f8602b0d508b8431/propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e5cbfac9f61484f7e9f3597775500cd3ebe8274e9b050c38f9525c77c97520bf", size = 55190, upload-time = "2026-05-08T21:00:13.935Z" },
|
| 460 |
+
{ url = "https://files.pythonhosted.org/packages/44/c7/085d0cd63062e84044e3f05797749c3f8e3938ff3aeb0eb2f69d43fafc91/propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5dbc581d2814337da56222fab8dc5f161cd798a434e49bac27930aaef798e144", size = 59995, upload-time = "2026-05-08T21:00:15.526Z" },
|
| 461 |
+
{ url = "https://files.pythonhosted.org/packages/9c/42/32cf8e3009e92b2645cf1e944f701e8ea4e924dffde1ee26db860bcbf7e4/propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:857187f381f88c8e2fa2fe56ab94879d011b883d5a2ee5a1b60a8cd2a06846d9", size = 63422, upload-time = "2026-05-08T21:00:16.824Z" },
|
| 462 |
+
{ url = "https://files.pythonhosted.org/packages/9e/1b/f112433f99fc979431b87a39ef169e3f8df070d99a72792c56d6937ac48b/propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:178b4a2cdaac1818e2bf1c5a99b94383fa73ea5382e032a48dec07dc5668dc42", size = 64342, upload-time = "2026-05-08T21:00:18.362Z" },
|
| 463 |
+
{ url = "https://files.pythonhosted.org/packages/14/15/5574111ae50dd6e879456888c0eadd4c5a869959775854e18e18a6b345f3/propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f328175a2cde1f0ff2c4ed8ce968b9dcfb55f3a7153f39e2957ed994da13476", size = 61639, upload-time = "2026-05-08T21:00:19.692Z" },
|
| 464 |
+
{ url = "https://files.pythonhosted.org/packages/cc/da/4d775080b1490c0ae604acda868bd71aabe3a89ed16f2aa4339eb8a283e7/propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5671d09a36b06d0fd4a3da0fccbcae360e9b1570924171a15e9e0997f0249fba", size = 61588, upload-time = "2026-05-08T21:00:21.155Z" },
|
| 465 |
+
{ url = "https://files.pythonhosted.org/packages/04/ac/f076982cbe2195ee9cf32de5a1e46951d9fb399fc207f390562dd0fd8fb2/propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80168e2ebe4d3ec6599d10ad8f520304ae1cad9b6c5a95372aef1b66b7bfb53a", size = 60029, upload-time = "2026-05-08T21:00:22.713Z" },
|
| 466 |
+
{ url = "https://files.pythonhosted.org/packages/70/60/189be62e0dd898dce3b331e1b8c7a543cd3a405ac0c81fe8ee8a9d5d77e1/propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:45f11346f884bc47444f6e6647131055844134c3175b629f84952e2b5cd62b64", size = 56774, upload-time = "2026-05-08T21:00:24.001Z" },
|
| 467 |
+
{ url = "https://files.pythonhosted.org/packages/ea/9e/93377b9c7939c1ffae98f878dee955efadfd638078bc86dbc21f9d52f651/propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8e778ebd44ef4f66ed60a0416b06b489687db264a9c0b3620362f26489492913", size = 63532, upload-time = "2026-05-08T21:00:25.545Z" },
|
| 468 |
+
{ url = "https://files.pythonhosted.org/packages/14/f9/590ef6cfb9b8028d516d287812ece32bb0bc5f11fbb9c8bf6b2e6313fec8/propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:c0cb9ed24c8964e172768d455a38254c2dd8a552905729ce006cad3d3dda59b1", size = 61592, upload-time = "2026-05-08T21:00:27.186Z" },
|
| 469 |
+
{ url = "https://files.pythonhosted.org/packages/b4/5e/70958b3034c297a630bba2f17ca7abc2d5f39a803ad7e370ab79d1ecd022/propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1d1ad32d9d4355e2be65574fd0bfd3677e7066b009cd5b9b2dee8aa6a6393b33", size = 64788, upload-time = "2026-05-08T21:00:28.8Z" },
|
| 470 |
+
{ url = "https://files.pythonhosted.org/packages/12/fd/77fe5936d8c3086ca9048f7f415f122ed82e53884a9ec193646b42deef06/propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c80f4ba3e8f00189165999a742ee526ebeccedf6c3f7beb0c7df821e9772435a", size = 62514, upload-time = "2026-05-08T21:00:30.098Z" },
|
| 471 |
+
{ url = "https://files.pythonhosted.org/packages/cf/74/66bd798b5b3be70aa1b391f5cc9d6a0a5532d7fd3b19ec0b213e72e6ad9d/propcache-0.5.2-cp312-cp312-win32.whl", hash = "sha256:8c7972d8f193740d9175f0998ab38717e6cd322d5935c5b0fef8c0d323fd9031", size = 39018, upload-time = "2026-05-08T21:00:31.622Z" },
|
| 472 |
+
{ url = "https://files.pythonhosted.org/packages/61/7c/5c0d34aa3024694d6dcb9271cdbdd08c4e47c1c0ad95ec7e7bc74cdea145/propcache-0.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:d9ee8826a7d47863a08ac44e1a5f611a462eefc3a194b492da242128bec75b42", size = 42322, upload-time = "2026-05-08T21:00:32.918Z" },
|
| 473 |
+
{ url = "https://files.pythonhosted.org/packages/4d/91/875812f1a3feb20ceba818ef39fbe4d92f1081e04ac815c822496d0d038b/propcache-0.5.2-cp312-cp312-win_arm64.whl", hash = "sha256:2800a4a8ead6b28cccd1ec54b59346f0def7922ee1c7598e8499c733cfbb7c84", size = 38172, upload-time = "2026-05-08T21:00:35.124Z" },
|
| 474 |
+
{ url = "https://files.pythonhosted.org/packages/3a/ed/1cdcab6ba3d6ab7feca11fc14f0eeea80755bb53ef4e892079f31b10a25f/propcache-0.5.2-py3-none-any.whl", hash = "sha256:be1ddfcbb376e3de5d2e2db1d58d6d67463e6b4f9f040c000de8e300295465fe", size = 14036, upload-time = "2026-05-08T21:02:10.673Z" },
|
| 475 |
+
]
|
| 476 |
+
|
| 477 |
+
[[package]]
|
| 478 |
+
name = "pyarrow"
|
| 479 |
+
version = "25.0.1"
|
| 480 |
+
source = { registry = "https://pypi.org/simple" }
|
| 481 |
+
sdist = { url = "https://files.pythonhosted.org/packages/3d/e3/27f57f80141379d60defe6703eb50a707325706f07fedfd1312c7a751995/pyarrow-25.0.1.tar.gz", hash = "sha256:9150a83248bfed9813ea3c3af74c3856c1984d444aa28e58bf7733b9750ddf6a", size = 1201653, upload-time = "2026-08-10T12:40:53.904Z" }
|
| 482 |
+
wheels = [
|
| 483 |
+
{ url = "https://files.pythonhosted.org/packages/a6/e2/9ab15b88cbfac28e16419ce5439ec29234c5172cb8259301b4ba639bdec0/pyarrow-25.0.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:df961f2e7ae9cf496459259d798652c70625f6c080650d6952f8c04053c58ee9", size = 35861559, upload-time = "2026-08-10T12:38:02.567Z" },
|
| 484 |
+
{ url = "https://files.pythonhosted.org/packages/58/79/a0036dbe1eabe1f73127427342f1d99982584c4a2cde2651d6c93499c6f6/pyarrow-25.0.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:cc4aa407fde9fc660be3939e49ea31f50f3e9fec17c0ec63159f7711edd3efc9", size = 37628383, upload-time = "2026-08-10T12:38:09.083Z" },
|
| 485 |
+
{ url = "https://files.pythonhosted.org/packages/13/49/d93a57d375f4bf0cf82913dd6bb54acafde83dd993be2282c81ac5616cad/pyarrow-25.0.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:4340f0ba6c1d2e13f21658de1d7c662ca2545018568d0030a1e9afca159d87e3", size = 46820190, upload-time = "2026-08-10T12:38:15.458Z" },
|
| 486 |
+
{ url = "https://files.pythonhosted.org/packages/60/c9/711ca85d79f1ec98f29a5eae2b051e25b4ecec5de3e3c0e2d5c5dcb15664/pyarrow-25.0.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:5389cdf79447ed1515c9e31620e6e1e2302249564d603f2ad727d4f6d313e4c3", size = 50102437, upload-time = "2026-08-10T12:38:22.487Z" },
|
| 487 |
+
{ url = "https://files.pythonhosted.org/packages/80/53/8fb8359ff17cfb6263a1cf3ebf7caec9fe197de118719e84fcb1d0618026/pyarrow-25.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d51592cb7561e87877c506113e7adbf1342ab579e6c21f0ef44b8ba41cb74c80", size = 49942424, upload-time = "2026-08-10T12:38:28.755Z" },
|
| 488 |
+
{ url = "https://files.pythonhosted.org/packages/e8/83/4e5ae02a9341571b18a6fca380ac7a58ce6ddae7ab3c060208c0a1e79f02/pyarrow-25.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6109c94d8b9f3b17a041daca16cacb2f651ad8f1ef70a4232c2c0f37a23da2a8", size = 53144206, upload-time = "2026-08-10T12:38:34.862Z" },
|
| 489 |
+
{ url = "https://files.pythonhosted.org/packages/65/ee/197cbf47e49f83e6ebeb946a5259a48a638dea27ac774db42fe78022179d/pyarrow-25.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:8858d7bfc22e3f51529aeaa4077225029724623e4595dc9eff8c793935c34140", size = 27953934, upload-time = "2026-08-10T12:38:39.808Z" },
|
| 490 |
+
]
|
| 491 |
+
|
| 492 |
+
[[package]]
|
| 493 |
+
name = "pygments"
|
| 494 |
+
version = "2.21.0"
|
| 495 |
+
source = { registry = "https://pypi.org/simple" }
|
| 496 |
+
sdist = { url = "https://files.pythonhosted.org/packages/49/2e/ced460408999b33da6b31b0021b0f37d329e202d4169aeb164493778f25b/pygments-2.21.0.tar.gz", hash = "sha256:610ca751c9bc2492b38eb9a38a7fbc93edbbb2d7182edaf34e66ae493dee5c8c", size = 5005329, upload-time = "2026-08-17T08:02:48.824Z" }
|
| 497 |
+
wheels = [
|
| 498 |
+
{ url = "https://files.pythonhosted.org/packages/71/46/17f022dd3e953bf20a04a028a21ec746d942f8d2af30fa0f124fa0e6a684/pygments-2.21.0-py3-none-any.whl", hash = "sha256:2363c69b61c4a97c838da3b130dcd6468f4848992b21a82f2a63ec34377137d9", size = 1250147, upload-time = "2026-08-17T08:02:44.912Z" },
|
| 499 |
+
]
|
| 500 |
+
|
| 501 |
+
[[package]]
|
| 502 |
+
name = "pytest"
|
| 503 |
+
version = "9.1.1"
|
| 504 |
+
source = { registry = "https://pypi.org/simple" }
|
| 505 |
+
dependencies = [
|
| 506 |
+
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
| 507 |
+
{ name = "iniconfig" },
|
| 508 |
+
{ name = "packaging" },
|
| 509 |
+
{ name = "pluggy" },
|
| 510 |
+
{ name = "pygments" },
|
| 511 |
+
]
|
| 512 |
+
sdist = { url = "https://files.pythonhosted.org/packages/e4/47/b9efed96c114afcfa3c9d3fe98a76a1d14c74a9e266d397cf6eb64be5e01/pytest-9.1.1.tar.gz", hash = "sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313", size = 1636369, upload-time = "2026-06-19T10:58:32.857Z" }
|
| 513 |
+
wheels = [
|
| 514 |
+
{ url = "https://files.pythonhosted.org/packages/24/25/1de2678b631f5a49215c6c96fff41ba892b0a34df68d6d80292b1b48aa7f/pytest-9.1.1-py3-none-any.whl", hash = "sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c", size = 386536, upload-time = "2026-06-19T10:58:31.347Z" },
|
| 515 |
+
]
|
| 516 |
+
|
| 517 |
+
[[package]]
|
| 518 |
+
name = "python-dateutil"
|
| 519 |
+
version = "2.9.0.post0"
|
| 520 |
+
source = { registry = "https://pypi.org/simple" }
|
| 521 |
+
dependencies = [
|
| 522 |
+
{ name = "six" },
|
| 523 |
+
]
|
| 524 |
+
sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" }
|
| 525 |
+
wheels = [
|
| 526 |
+
{ url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
|
| 527 |
+
]
|
| 528 |
+
|
| 529 |
+
[[package]]
|
| 530 |
+
name = "pyyaml"
|
| 531 |
+
version = "6.0.3"
|
| 532 |
+
source = { registry = "https://pypi.org/simple" }
|
| 533 |
+
sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" }
|
| 534 |
+
wheels = [
|
| 535 |
+
{ url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" },
|
| 536 |
+
{ url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" },
|
| 537 |
+
{ url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" },
|
| 538 |
+
{ url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" },
|
| 539 |
+
{ url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" },
|
| 540 |
+
{ url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" },
|
| 541 |
+
{ url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" },
|
| 542 |
+
{ url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" },
|
| 543 |
+
{ url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" },
|
| 544 |
+
{ url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" },
|
| 545 |
+
]
|
| 546 |
+
|
| 547 |
+
[[package]]
|
| 548 |
+
name = "requests"
|
| 549 |
+
version = "2.34.2"
|
| 550 |
+
source = { registry = "https://pypi.org/simple" }
|
| 551 |
+
dependencies = [
|
| 552 |
+
{ name = "certifi" },
|
| 553 |
+
{ name = "charset-normalizer" },
|
| 554 |
+
{ name = "idna" },
|
| 555 |
+
{ name = "urllib3" },
|
| 556 |
+
]
|
| 557 |
+
sdist = { url = "https://files.pythonhosted.org/packages/ac/c3/e2a2b89f2d3e2179abd6d00ebd70bff6273f37fb3e0cc209f48b39d00cbf/requests-2.34.2.tar.gz", hash = "sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed", size = 142856, upload-time = "2026-05-14T19:25:27.735Z" }
|
| 558 |
+
wheels = [
|
| 559 |
+
{ url = "https://files.pythonhosted.org/packages/a0/f4/c67b0b3f1b9245e8d266f0f112c500d50e5b4e83cb6f3b71b6528104182a/requests-2.34.2-py3-none-any.whl", hash = "sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0", size = 73075, upload-time = "2026-05-14T19:25:26.443Z" },
|
| 560 |
+
]
|
| 561 |
+
|
| 562 |
+
[[package]]
|
| 563 |
+
name = "six"
|
| 564 |
+
version = "1.17.0"
|
| 565 |
+
source = { registry = "https://pypi.org/simple" }
|
| 566 |
+
sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" }
|
| 567 |
+
wheels = [
|
| 568 |
+
{ url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" },
|
| 569 |
+
]
|
| 570 |
+
|
| 571 |
+
[[package]]
|
| 572 |
+
name = "tqdm"
|
| 573 |
+
version = "4.70.0"
|
| 574 |
+
source = { registry = "https://pypi.org/simple" }
|
| 575 |
+
dependencies = [
|
| 576 |
+
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
| 577 |
+
]
|
| 578 |
+
sdist = { url = "https://files.pythonhosted.org/packages/21/3b/6c24bec5be5e743ffd99576daa5cc077722fc7d5bbc00bd133fa0c698dc6/tqdm-4.70.0.tar.gz", hash = "sha256:55b0b0dbd97462d06ebee91e4dac24ed4d4702be82b24f07e6c1d27e08cea220", size = 795438, upload-time = "2026-07-27T11:33:15.271Z" }
|
| 579 |
+
wheels = [
|
| 580 |
+
{ url = "https://files.pythonhosted.org/packages/f9/1c/01bfd571a64e7f270e6bab5e33777debe0edc56759233ce84f27dec92d14/tqdm-4.70.0-py3-none-any.whl", hash = "sha256:7f585706bfddbdebf89daac705b2dfcc16890130727d3197ca62c732b4310953", size = 80184, upload-time = "2026-07-27T11:33:13.167Z" },
|
| 581 |
+
]
|
| 582 |
+
|
| 583 |
+
[[package]]
|
| 584 |
+
name = "typing-extensions"
|
| 585 |
+
version = "4.16.0"
|
| 586 |
+
source = { registry = "https://pypi.org/simple" }
|
| 587 |
+
sdist = { url = "https://files.pythonhosted.org/packages/f6/cc/6253133b5bb138fc3306cebfbda2c520f545d36b5be2c7255cc528bb45d6/typing_extensions-4.16.0.tar.gz", hash = "sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5", size = 113555, upload-time = "2026-07-02T08:40:05.92Z" }
|
| 588 |
+
wheels = [
|
| 589 |
+
{ url = "https://files.pythonhosted.org/packages/49/d3/b8441a820a491ddfc024b0b0cf0393375b75ea13866d9c66727e54c2fc80/typing_extensions-4.16.0-py3-none-any.whl", hash = "sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8", size = 45571, upload-time = "2026-07-02T08:40:04.659Z" },
|
| 590 |
+
]
|
| 591 |
+
|
| 592 |
+
[[package]]
|
| 593 |
+
name = "tzdata"
|
| 594 |
+
version = "2026.3"
|
| 595 |
+
source = { registry = "https://pypi.org/simple" }
|
| 596 |
+
sdist = { url = "https://files.pythonhosted.org/packages/92/ff/5a28bdfd8c3ebec42564ac7d0e54ca3db65044a9314a97f9564fa7a1e926/tzdata-2026.3.tar.gz", hash = "sha256:4a1518b8993086a7982523e071643f3c0e5f213e75b21318e78bcabfff9d1415", size = 198674, upload-time = "2026-07-10T08:50:37.887Z" }
|
| 597 |
+
wheels = [
|
| 598 |
+
{ url = "https://files.pythonhosted.org/packages/e5/6d/b53b99a9f2766d095985947a5782f1702cabb129a34f7a802d7197af832f/tzdata-2026.3-py2.py3-none-any.whl", hash = "sha256:dc096730c87af6cab1b171c9d532be840741ff5d459015e7f6947bd7d7e54931", size = 348168, upload-time = "2026-07-10T08:50:36.46Z" },
|
| 599 |
+
]
|
| 600 |
+
|
| 601 |
+
[[package]]
|
| 602 |
+
name = "urllib3"
|
| 603 |
+
version = "2.7.0"
|
| 604 |
+
source = { registry = "https://pypi.org/simple" }
|
| 605 |
+
sdist = { url = "https://files.pythonhosted.org/packages/53/0c/06f8b233b8fd13b9e5ee11424ef85419ba0d8ba0b3138bf360be2ff56953/urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c", size = 433602, upload-time = "2026-05-07T16:13:18.596Z" }
|
| 606 |
+
wheels = [
|
| 607 |
+
{ url = "https://files.pythonhosted.org/packages/7f/3e/5db95bcf282c52709639744ca2a8b149baccf648e39c8cc87553df9eae0c/urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897", size = 131087, upload-time = "2026-05-07T16:13:17.151Z" },
|
| 608 |
+
]
|
| 609 |
+
|
| 610 |
+
[[package]]
|
| 611 |
+
name = "xxhash"
|
| 612 |
+
version = "4.0.1"
|
| 613 |
+
source = { registry = "https://pypi.org/simple" }
|
| 614 |
+
sdist = { url = "https://files.pythonhosted.org/packages/f6/a5/1386f35da1475fcaeef42581deae73417c6d2a6a0b2d2e8914de18844dcd/xxhash-4.0.1.tar.gz", hash = "sha256:d55bf4ef10eb09b8b6866790e083d26d087d84caa3cc0946ba87c3ca7ecaf7b7", size = 101513, upload-time = "2026-08-17T08:24:08.557Z" }
|
| 615 |
+
wheels = [
|
| 616 |
+
{ url = "https://files.pythonhosted.org/packages/26/6c/dc7cffeadd06336cd934947187cd38abb263103bbc552ca0f55fe4ff595a/xxhash-4.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1ee523f51718e41753f04f7102bb4dc55a18d2ea5cbaceef8ec7ca08571bd428", size = 38444, upload-time = "2026-08-17T08:21:54.332Z" },
|
| 617 |
+
{ url = "https://files.pythonhosted.org/packages/75/c9/cf736f6db8c3273af18925061572db0d4357818a9ce425f4b5fb0021918e/xxhash-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:515a822c73abbf6a0b7c70976d9662be342835c9d78b8dc7c023411f39c35dbc", size = 36195, upload-time = "2026-08-17T08:35:13.004Z" },
|
| 618 |
+
{ url = "https://files.pythonhosted.org/packages/da/a2/ca1929354b6851529d0148f7f335b5e2b0281f83bab3e19f0896dc579796/xxhash-4.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f5d031f35962e5483a613214e61f09fe24ab523062c3646d592dc16c4a217451", size = 253113, upload-time = "2026-08-17T08:20:52.152Z" },
|
| 619 |
+
{ url = "https://files.pythonhosted.org/packages/de/bb/542005206af59518bc8d78a210f1e0172217bc53beb32f64a5b632e72b6b/xxhash-4.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:da0264844a09b538c894e5eff25313d941deb4dedec2131b98418a71a3c9944e", size = 276525, upload-time = "2026-08-17T08:21:01.886Z" },
|
| 620 |
+
{ url = "https://files.pythonhosted.org/packages/1b/df/607cff25dcb0f1d35c3b04493f6ad8471edb03fd4eacbdcc5ceddef1f3e9/xxhash-4.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:1642907941ee4b75aacc3db688af52ea02ca2305ab22af7ee686ed726b332684", size = 297703, upload-time = "2026-08-17T08:21:57.958Z" },
|
| 621 |
+
{ url = "https://files.pythonhosted.org/packages/15/ba/9d2275eea0b9d9c6b02921be23f7588356c60df95c763b25f0e045894d43/xxhash-4.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4af350bc3f329970c0e3a59af84a8a30998bf8a9167eb50cd48e59baaa1d7bec", size = 280252, upload-time = "2026-08-17T08:20:47.299Z" },
|
| 622 |
+
{ url = "https://files.pythonhosted.org/packages/1d/aa/2299d9f6369e550aef2abb64945e39daa34412725aa46a20d99b74d76f67/xxhash-4.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8ba782ca3bf1e81492611152b9a0d5264971339e95e34d69de0ac2c926be496d", size = 511041, upload-time = "2026-08-17T08:20:36.771Z" },
|
| 623 |
+
{ url = "https://files.pythonhosted.org/packages/83/97/31bd8b8279e6935a0719f6910ced15e9d5a2cd554b253f6027ce1b5a1c2c/xxhash-4.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:237b8f63a2a0fcfb1ffc06e21dad23add44e6d354b2b014364a1d41e419a4dee", size = 261812, upload-time = "2026-08-17T08:22:00.469Z" },
|
| 624 |
+
{ url = "https://files.pythonhosted.org/packages/2d/c1/d180a2da23c105d8e0b02d54f9f5841013fc81c233010ec781e31f1aee4c/xxhash-4.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:81507a68ba84c55241fb61cce1469f473a5da4205fc8ef6f698e5948eea8dd88", size = 339878, upload-time = "2026-08-17T08:35:17.626Z" },
|
| 625 |
+
{ url = "https://files.pythonhosted.org/packages/a8/3d/f584cd3172fe934f0f5a0a3917d0d7ce781f74d794fd43bb72be71c3ef6f/xxhash-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5f1ea31d61bcd2cd2f3ec4ca80a64187bbd7948f490b63cf0dcbc6e717b4c1e9", size = 272871, upload-time = "2026-08-17T08:20:56.067Z" },
|
| 626 |
+
{ url = "https://files.pythonhosted.org/packages/34/50/2c7956b2b551682e00b9aebce9ceb0a991a131d65f9850c09f5f9760be2e/xxhash-4.0.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:06713a5aaf1d0905c5579416c020c02e42b3ceb931e86c7d3b7fb85403dee3f3", size = 301440, upload-time = "2026-08-17T08:21:35.911Z" },
|
| 627 |
+
{ url = "https://files.pythonhosted.org/packages/eb/a2/0739f6482184a8026f4b022718f5f815d352059312e80696825433f0a8e7/xxhash-4.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e8cda075b10bb3917b002c74a04f9e02b7d13b5bf732571404d51c52b11c7329", size = 260157, upload-time = "2026-08-17T08:22:01.416Z" },
|
| 628 |
+
{ url = "https://files.pythonhosted.org/packages/a1/25/b31a7bcf1d7d116842812e54f9b944843b4236ea4fa85634e8259f342212/xxhash-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c10b9206753b64aa791b35b201485477525b26fdec5bf86e8364c388a03e2592", size = 278233, upload-time = "2026-08-17T08:21:15.674Z" },
|
| 629 |
+
{ url = "https://files.pythonhosted.org/packages/db/e8/5293bae090fc6119dbc5fcf5c4cc0e1536394b52d73b7904d033836c73db/xxhash-4.0.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:f3e1a44af01b6692de0ec6caba5f0bf93ceb36896e02b7fc00952c6ea7ef39e1", size = 330270, upload-time = "2026-08-17T08:20:51.128Z" },
|
| 630 |
+
{ url = "https://files.pythonhosted.org/packages/72/9e/e2ab12d40921f3f34c9317637d65e011aeababf8288356ea8d527de2c1d0/xxhash-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:c6fc415b5568bd9accc7187f1729a99707330c0a67a8b9f93c1149ed573ed75d", size = 478555, upload-time = "2026-08-17T08:22:04.183Z" },
|
| 631 |
+
{ url = "https://files.pythonhosted.org/packages/6d/32/c6148d39a49efa95f39b4cf0d41ef35a487f3b30f6fb1fc8fe8d8eab577e/xxhash-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:96d8de55029d42251945531f6aa7590c32b48163c66a43bf29d8657d7446a377", size = 258174, upload-time = "2026-08-17T08:35:21.18Z" },
|
| 632 |
+
{ url = "https://files.pythonhosted.org/packages/8f/fb/0b04b68d6c5bc71c7a2c344f1287327b67e607f28fbcfd937697caca64b6/xxhash-4.0.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl", hash = "sha256:0163b5d259de23ae9e07b7eabf435ce4704f6f205589a2b154e6af4be985ce1b", size = 20767, upload-time = "2026-08-17T08:21:00.806Z" },
|
| 633 |
+
{ url = "https://files.pythonhosted.org/packages/a6/be/476092aba34d1fcd313e1613a3bb3bc692f253d167b54bc90049043b5034/xxhash-4.0.1-cp312-cp312-win32.whl", hash = "sha256:1216f7ba5683f17a89eb7dcb4bc50a0b743dfe1902278d7b3d0786f538118433", size = 34669, upload-time = "2026-08-17T08:21:49.486Z" },
|
| 634 |
+
{ url = "https://files.pythonhosted.org/packages/aa/02/f9413d94fae43cec6d1a74c4f12156c6f4a7f5fd50e1d34defebdee3dec9/xxhash-4.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:5c2d525a3afabcd8e3549d85fc7e111fde6bc302d06a1893fe73adb79823415e", size = 37073, upload-time = "2026-08-17T08:22:04.886Z" },
|
| 635 |
+
{ url = "https://files.pythonhosted.org/packages/c1/83/6fe93c1b95acf962bc61a246df09dc2dcce895ccfc1080c9f48d0b652b92/xxhash-4.0.1-cp312-cp312-win_arm64.whl", hash = "sha256:86b2b12bec60c678ed8f5cca0258ad93a8928ebddb6ca7732f0875afe1451d1a", size = 33299, upload-time = "2026-08-17T08:35:12.708Z" },
|
| 636 |
+
{ url = "https://files.pythonhosted.org/packages/86/79/9127ff42a887a348dc4ce3211cf1a962836887adee6f57078132bfba78b4/xxhash-4.0.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl", hash = "sha256:ff48915bf1871a1f19f74c11834c6329443d306cedc0c05fe7fe617810422a80", size = 31836, upload-time = "2026-08-17T08:36:28.261Z" },
|
| 637 |
+
{ url = "https://files.pythonhosted.org/packages/0a/e6/f238693bfdd642adb59c99683964d46d9947fe721ff44d3bd850ae675407/xxhash-4.0.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:4a76345f5aceb4ec404918edf9c7f2b5507db864dc0d7455982009ac0890b57b", size = 34453, upload-time = "2026-08-17T08:23:49.795Z" },
|
| 638 |
+
{ url = "https://files.pythonhosted.org/packages/40/4b/796ace33cdfb75c91ba6d11615c3bd436355b9f3103e05865bbee9abce57/xxhash-4.0.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:31d86f9e81f3e84e00131ac7c54caf5119ae4ddd82c09c31cff597c813ce1ee2", size = 38488, upload-time = "2026-08-17T08:23:59.901Z" },
|
| 639 |
+
{ url = "https://files.pythonhosted.org/packages/ad/23/2d549e5d5d7759eaf9ac2d2d2ab81ff60f1bb2b52cdaae8e5ec5c6524354/xxhash-4.0.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:deca2a30d983d240b8375ec2ee0a4288e72042827fc61df2f7671f8467e4cb2f", size = 38206, upload-time = "2026-08-17T08:36:32.193Z" },
|
| 640 |
+
{ url = "https://files.pythonhosted.org/packages/79/98/1ee576b27f78e6107ee4ea8ac03e8a52888dff256e57d560f8282c195563/xxhash-4.0.1-graalpy312-graalpy250_312_native-win_amd64.whl", hash = "sha256:7c343ee174d417a44d0c3355602c0cbbfa52a04d1bbbf1723378c7d2c8f60626", size = 37127, upload-time = "2026-08-17T08:23:42.705Z" },
|
| 641 |
+
]
|
| 642 |
+
|
| 643 |
+
[[package]]
|
| 644 |
+
name = "yarl"
|
| 645 |
+
version = "1.24.5"
|
| 646 |
+
source = { registry = "https://pypi.org/simple" }
|
| 647 |
+
dependencies = [
|
| 648 |
+
{ name = "idna" },
|
| 649 |
+
{ name = "multidict" },
|
| 650 |
+
{ name = "propcache" },
|
| 651 |
+
]
|
| 652 |
+
sdist = { url = "https://files.pythonhosted.org/packages/31/33/ebe9e3d1f86c7a0b51094c0a146392045ca1631d2664889539dec8088a33/yarl-1.24.5.tar.gz", hash = "sha256:e81b83143bee16329c23db3c1b2d82b29892fcbcb849186d2f6e98a5abe9a57f", size = 228679, upload-time = "2026-07-20T02:07:45.435Z" }
|
| 653 |
+
wheels = [
|
| 654 |
+
{ url = "https://files.pythonhosted.org/packages/1b/84/71d051c850b5af41d168c679d9eb67eb7c55283ac4ee131673edf134bc4e/yarl-1.24.5-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d693396e5aea78db03decd60aec9ece16c9b40ba00a587f089615ff4e718a81d", size = 136035, upload-time = "2026-07-20T02:05:25.489Z" },
|
| 655 |
+
{ url = "https://files.pythonhosted.org/packages/03/4d/8ad27f9a1b7e69313cca5d695b925b48efe51208d3490e0844bae97cabc0/yarl-1.24.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3363fcc96e665878946ad7a106b9a13eac0541766a690ef287c0232ac768b6ec", size = 97642, upload-time = "2026-07-20T02:05:27.429Z" },
|
| 656 |
+
{ url = "https://files.pythonhosted.org/packages/ea/b4/05b4131c407006cd1e410e9c6539f16a0945724677e5364447313c15ea3e/yarl-1.24.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9d399bdcfb4a0f659b9b3788bbc89babe63d9a6a65aacdf4d4e7065ff2e6316c", size = 97323, upload-time = "2026-07-20T02:05:29.441Z" },
|
| 657 |
+
{ url = "https://files.pythonhosted.org/packages/20/16/e618c875c73e0e39611f20a581b3d5e8d59b8857bf001bee3263044c6deb/yarl-1.24.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:90333fd89b43c0d08ac85f3f1447593fc2c66de18c3d6378d7125ea118dc7a54", size = 107741, upload-time = "2026-07-20T02:05:31.367Z" },
|
| 658 |
+
{ url = "https://files.pythonhosted.org/packages/d9/9a/c4defeaf3ed33fcb346aacf9c6e971a8d4e2bde04a0310e79abb208e7965/yarl-1.24.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:665b0a2c463cc9423dd647e0bfd9f4ccc9b50f768c55304d5e9f80b177c1de12", size = 103570, upload-time = "2026-07-20T02:05:33.303Z" },
|
| 659 |
+
{ url = "https://files.pythonhosted.org/packages/5f/e7/0e0e0de5865ebd5914537ef486f36c727a59865c3ac0cf5ff1b32aececbf/yarl-1.24.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e006d3a974c4ee19512e5f058abedb6eef36a5e553c14812bdeba1758d812e6d", size = 115815, upload-time = "2026-07-20T02:05:35.292Z" },
|
| 660 |
+
{ url = "https://files.pythonhosted.org/packages/2b/27/ca56b700cb170aba25a3893b75355b213935657dc5714d2383354a270e62/yarl-1.24.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e7d42c531243450ef0d4d9c172e7ed6ef052640f195629065041b5add4e058d1", size = 116025, upload-time = "2026-07-20T02:05:37.503Z" },
|
| 661 |
+
{ url = "https://files.pythonhosted.org/packages/d6/d0/d56c859b8222116f5d68459199f48359e0bf121b6f65a69bf329b3602ba0/yarl-1.24.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f08c7513ecef5aad65687bfdf6bc601ae9fccd04a42904501f8f7141abad9eb9", size = 109835, upload-time = "2026-07-20T02:05:39.506Z" },
|
| 662 |
+
{ url = "https://files.pythonhosted.org/packages/70/a2/3a35557e4d1a79425040eba202ccaf08bdc8717680fc77e2498a1ad2e0a5/yarl-1.24.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6c95b17fe34ed802f17e205112e6e10db92275c34fee290aa9bdc55a9c724027", size = 108884, upload-time = "2026-07-20T02:05:41.584Z" },
|
| 663 |
+
{ url = "https://files.pythonhosted.org/packages/e4/35/ef4c26356b7913c68983bac2d72a4212b3347af551cb8d250b99b5ed7b7f/yarl-1.24.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:56b149b22de33b23b0c6077ab9518c6dcb538ad462e1830e68d06591ccf6e38b", size = 107308, upload-time = "2026-07-20T02:05:43.697Z" },
|
| 664 |
+
{ url = "https://files.pythonhosted.org/packages/d5/91/ff0dc66c2ccf3e0153ab97ff61eabab4400e6a5264af427ab30cd69f1857/yarl-1.24.5-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a8fe66b8f300da93798025a785a5b90b42f3810dc2b72283ff84a41aaaebc293", size = 103646, upload-time = "2026-07-20T02:05:45.895Z" },
|
| 665 |
+
{ url = "https://files.pythonhosted.org/packages/74/f0/33b9271c7f881766359d58266fa0811d2e5210ed860e28da7dc6d7786344/yarl-1.24.5-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:377fe3732edbaf78ee74efdf2c9f49f6e99f20e7f9d2649fda3eb4badd77d76e", size = 115305, upload-time = "2026-07-20T02:05:47.832Z" },
|
| 666 |
+
{ url = "https://files.pythonhosted.org/packages/ef/65/fd79fb1868c4a80db8661091de525bf430f63c3bea1b20e8b6a84fc7d359/yarl-1.24.5-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e8ffa78582120024f476a611d7befc123cee59e47e8309d470cf667d806e613b", size = 108404, upload-time = "2026-07-20T02:05:49.604Z" },
|
| 667 |
+
{ url = "https://files.pythonhosted.org/packages/ff/ba/dbabe6b262f17a816c70cfc09558dbf03ece3ec76684d02f911a3d3a189c/yarl-1.24.5-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:daba5e594f06114e37db186efd2dd916609071e59daca901a0a2e71f02b142ce", size = 115940, upload-time = "2026-07-20T02:05:51.741Z" },
|
| 668 |
+
{ url = "https://files.pythonhosted.org/packages/a5/43/fab2d1dad9d340a268cdde63756a123d069723efff6a372d123fa74a9517/yarl-1.24.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:65be18ec59496c13908f02a2472751d9ef840b4f3fb5726f129306bf6a2a7bba", size = 110006, upload-time = "2026-07-20T02:05:53.554Z" },
|
| 669 |
+
{ url = "https://files.pythonhosted.org/packages/c4/27/41eb51bbd1b8d89546b83897cfb0164f1e109304fd408dbb151b639eec0f/yarl-1.24.5-cp312-cp312-win_amd64.whl", hash = "sha256:a929d878fec099030c292803b31e5d5540a7b6a31e6a3cc76cb4685fc2a2f51b", size = 97618, upload-time = "2026-07-20T02:05:55.57Z" },
|
| 670 |
+
{ url = "https://files.pythonhosted.org/packages/3c/25/b2553764b3d65db711d8f45416351ec4f420847558eb669edcbcaadf5780/yarl-1.24.5-cp312-cp312-win_arm64.whl", hash = "sha256:7ce27823052e2013b597e0c738b13e7e36b8ccb9400df8959417b052ab0fd92c", size = 93018, upload-time = "2026-07-20T02:05:57.554Z" },
|
| 671 |
+
{ url = "https://files.pythonhosted.org/packages/61/02/962c1cbfc401a30c1d034dc67ff395f64b52302c6d62de556c1fca99acc0/yarl-1.24.5-py3-none-any.whl", hash = "sha256:a33700d13d9b7d84fd10947b09ff69fb9a792e519c8cb9764a3ca70baa6c23a7", size = 58612, upload-time = "2026-07-20T02:07:43.461Z" },
|
| 672 |
+
]
|